Browse Source

(small change) - changed the message that the bot sends out when both the seer and wolf are not active during the first night

master
jcao219 13 years ago
parent
commit
e9bc970947
  1. 4
      wolfgame.py

4
wolfgame.py

@ -1020,9 +1020,7 @@ def transition_day(cli, gameid=0):
var.DAY_START_TIME = datetime.now() var.DAY_START_TIME = datetime.now()
if not len(var.SEEN)+len(var.ACTED_WOLVES) and var.FIRST_NIGHT and var.ROLES["seer"]: 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 "+ cli.msg(botconfig.CHANNEL, "\02The wolves all die of a mysterious plague.\02")
"were both found dead in their beds.").format(var.ROLES["wolf"][0],
var.ROLES["seer"][0]))
for x in var.ROLES["wolf"]+var.ROLES["werecrow"]+var.ROLES["traitor"]: for x in var.ROLES["wolf"]+var.ROLES["werecrow"]+var.ROLES["traitor"]:
if not del_player(cli, x, True): if not del_player(cli, x, True):
return return

Loading…
Cancel
Save