diff --git a/plugin.py b/plugin.py index 0efe540..7257134 100644 --- a/plugin.py +++ b/plugin.py @@ -218,14 +218,16 @@ class Cah(callbacks.Plugin): Class = CahGame ###### CHANNEL COMMANDS ###### - def startgame(self,irc, msg, args): + def forcestartgame(self, irc, msg, args): if channel in self.games: try: schedule.removeEvent("start_game_%s" % self.channel) except: pass self.games[channel].startgame() - + else: + irc.reply("Game not running.") + def playing(self, irc, msg, args): channel = ircutils.toLower(msg.args[0]) nick = msg.nick