From 0ad4af4240d8f1870f9bb37740d9bff3abbbaad3 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Tue, 25 Oct 2016 21:42:28 +0200 Subject: [PATCH] Change !fstop back to require prefix Per @skizzerz's comment on IRC, you're forcing the game to stop, as it would also stop on its own when it ends normally. --- src/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index 8ce049a..642ee10 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -6614,7 +6614,7 @@ def fwait(cli, nick, chan, rest): cli.msg(chan, messages["forced_wait_time_decrease"].format(nick, abs(extra), "s" if extra != -1 else "")) -@cmd("stop", "fstop", flag="A", phases=("join", "day", "night")) +@cmd("fstop", flag="A", phases=("join", "day", "night")) def reset_game(cli, nick, chan, rest): """Forces the game to stop.""" if nick == "":