Don't add streak to the question's points

Fixes #270
This commit is contained in:
tannn 2014-01-04 22:02:23 -06:00
parent 32bbce3982
commit c2eb0170e5
1 changed files with 0 additions and 1 deletions

View File

@ -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)