From 0fcf10494fdc2904f840438a5f31a83b1e4ba114 Mon Sep 17 00:00:00 2001 From: nyuszika7h Date: Thu, 10 Jul 2014 13:01:46 +0200 Subject: [PATCH] Add warning to !coin/!pony --- modules/wolfgame.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 844ca98..5af2871 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -2905,6 +2905,7 @@ def coin(cli, nick, chan, rest): cli.notice(nick, "You may not use this command right now.") return + cli.notice(nick, "It's a bad idea to base any decisions on this command.") cli.msg(chan, "\2{0}\2 tosses a coin into the air...".format(nick)) var.LOGGER.logMessage("{0} tosses a coin into the air...".format(nick)) coin = random.choice(["heads", "tails"]) @@ -2925,6 +2926,7 @@ def pony(cli, nick, chan, rest): cli.notice(nick, "You may not use this command right now.") return + cli.notice(nick, "It's a bad idea to base any decisions on this command.") cli.msg(chan, "\2{0}\2 tosses a pony into the air...".format(nick)) var.LOGGER.logMessage("{0} tosses a pony into the air...".format(nick)) pony = random.choice(["hoof", "plot"])