From e9bc9709479add67399c1248c17e03bdf123e59b Mon Sep 17 00:00:00 2001 From: jcao219 Date: Fri, 5 Aug 2011 00:47:15 -0500 Subject: [PATCH] (small change) - changed the message that the bot sends out when both the seer and wolf are not active during the first night --- wolfgame.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/wolfgame.py b/wolfgame.py index f3ce4e8..7c4f69a 100644 --- a/wolfgame.py +++ b/wolfgame.py @@ -1020,9 +1020,7 @@ def transition_day(cli, gameid=0): var.DAY_START_TIME = datetime.now() if not len(var.SEEN)+len(var.ACTED_WOLVES) and var.FIRST_NIGHT and var.ROLES["seer"]: - cli.msg(botconfig.CHANNEL, ("\u0002{0}\u0002, a \u0002wolf\u0002, and \u0002{1}\u0002, a \u0002seer\u0002 "+ - "were both found dead in their beds.").format(var.ROLES["wolf"][0], - var.ROLES["seer"][0])) + cli.msg(botconfig.CHANNEL, "\02The wolves all die of a mysterious plague.\02") for x in var.ROLES["wolf"]+var.ROLES["werecrow"]+var.ROLES["traitor"]: if not del_player(cli, x, True): return