From c2eb0170e5c83cea99ef32feeb6b13e89c580064 Mon Sep 17 00:00:00 2001 From: tannn Date: Sat, 4 Jan 2014 22:02:23 -0600 Subject: [PATCH] Don't add streak to the question's points Fixes #270 --- plugin.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plugin.py b/plugin.py index d2ff177..b03b247 100644 --- a/plugin.py +++ b/plugin.py @@ -1479,7 +1479,6 @@ class TriviaTime(callbacks.Plugin): streakBonus = pointsAdded * .01 * (self.streak-1) if streakBonus > pointsAdded: streakBonus = pointsAdded - pointsAdded += streakBonus threadStorage.updateGameStreak(self.channel, self.lastWinner, self.streak) threadStorage.updateUserHighestStreak(self.lastWinner, self.streak) threadStorage.updateGameLongestStreak(self.channel, username, self.streak)