Update next message; change skip description

This commit is contained in:
tannn 2013-11-21 20:01:35 -06:00
parent 3d75c926a7
commit dc833f83a2
1 changed files with 2 additions and 2 deletions

View File

@ -493,7 +493,7 @@ class TriviaTime(callbacks.Plugin):
if self.games[channelCanonical].lastWinner == ircutils.toLower(username):
if self.games[channelCanonical].active == True:
if self.games[channelCanonical].questionOver:
irc.sendMsg(ircmsgs.privmsg(channel, 'Skipping to next question.'))
irc.sendMsg(ircmsgs.privmsg(channel, 'No more waiting; starting next question.'))
self.games[channelCanonical].removeEvent()
self.games[channelCanonical].nextQuestion()
return
@ -602,7 +602,7 @@ class TriviaTime(callbacks.Plugin):
def skip(self, irc, msg, arg):
"""
Skip a question
Skip the cureent question and start the next. Rate-limited.
"""
username = msg.nick
channel = msg.args[0]