From bbded392cd9b950bdaa743294c68a079cf78eb65 Mon Sep 17 00:00:00 2001 From: Yizhe Shen Date: Tue, 21 Oct 2014 00:28:23 -0400 Subject: [PATCH] Fixed incrementation of correct answer counter. - Correct answers of a question increments the counter by 1 instead of (4-self.hintsCounter) --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index e3f9c95..ec2906f 100644 --- a/plugin.py +++ b/plugin.py @@ -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()