Fixed incrementation of correct answer counter.

- Correct answers of a question increments the counter by 1 instead of
  (4-self.hintsCounter)
This commit is contained in:
Yizhe Shen 2014-10-21 00:28:23 -04:00
parent 23bd879631
commit bbded392cd
1 changed files with 1 additions and 1 deletions

View File

@ -1689,7 +1689,7 @@ class TriviaTime(callbacks.Plugin):
self.removeEvent()
threadStorage.updateQuestionStats(self.lineNumber, (4-self.hintsCounter), 0)
threadStorage.updateQuestionStats(self.lineNumber, 1, 0)
if self.stopPending == True:
self.stop()