From c737e50698e412266bf605ed715a973671ea9fa9 Mon Sep 17 00:00:00 2001 From: Tanner Date: Fri, 16 Jan 2015 23:21:32 -0600 Subject: [PATCH] streakbreak works now :) #262 --- plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin.py b/plugin.py index 57dbe1b..6569849 100644 --- a/plugin.py +++ b/plugin.py @@ -1660,7 +1660,7 @@ class TriviaTime(callbacks.Plugin): #streakbreak if self.streak > minStreak: streakBonus = pointsAdded * .05 - self.sendMessage('%d broke %d\'s streak!' % (game.lastWinner, username) , prefixNick=False) + self.sendMessage('%d broke %d\'s streak!' % (username, self.lastWinner,) , prefixNick=False) self.lastWinner = ircutils.toLower(username) self.streak = 1 else: