From dc833f83a28f46e9c8481d29cd63df35f00432e2 Mon Sep 17 00:00:00 2001 From: tannn Date: Thu, 21 Nov 2013 20:01:35 -0600 Subject: [PATCH] Update next message; change skip description --- plugin.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin.py b/plugin.py index 3c69e25..98ff318 100644 --- a/plugin.py +++ b/plugin.py @@ -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]