This commit is contained in:
Vincent Foley 2004-01-09 22:17:38 +00:00
parent 9f96715768
commit 57493551ff
1 changed files with 4 additions and 1 deletions

View File

@ -254,6 +254,9 @@ class Words(callbacks.Privmsg, configurable.Mixin):
"""
channel = msg.args[0]
game = self.games[channel]
if not game.gameOn:
irc.error(msg, 'There is no hangman game going on right now.')
return
irc.reply(msg, '%s %s' % (game.prefix, ' '.join(game.unused)))
def hangman(self, irc, msg, args):
@ -290,7 +293,7 @@ class Words(callbacks.Privmsg, configurable.Mixin):
self.hangman(irc, msg, args)
else:
irc.error(msg, 'Sorry, there is already a game going on. '
'%s left before timeout.' % utils.nItems('seconds',
'%s left before timeout.' % utils.nItems('second',
int(game.timeout - secondsEllapsed)))
def guess(self, irc, msg, args):