Fixed syntax error in TriviaTime.skip().

This commit is contained in:
Yizhe Shen 2015-02-18 05:44:52 -05:00
parent 5a0881cd34
commit 52fd0ef0e7
1 changed files with 1 additions and 1 deletions

View File

@ -3846,7 +3846,7 @@ class TriviaTime(callbacks.Plugin):
return
# Update skip count
game.skipList.append = usernameCanonical
game.skipList.append(usernameCanonical)
game.skipTimeoutList.append(usernameCanonical)
self.reply(irc, msg, '%s voted to skip this question.' % username, prefixNick=False)
skipPercent = len(game.skipList)/(totalActive*1.0)