From cd43225b537b91073139989572527208beb9d061 Mon Sep 17 00:00:00 2001 From: skizzerz Date: Sun, 10 Aug 2014 12:05:42 -0500 Subject: [PATCH] Visiting harlots now die if given death totem, and harlots that visit a visiting harlot that was given death totem and also targeted by wolves now dies as well. Closes #71 --- modules/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 6adf9cf..e322259 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -2302,7 +2302,7 @@ def transition_day(cli, gameid=0): message.append(("\u0002{0}\u0002 sacrificed their life to guard that of another.").format(bodyguard)) novictmsg = False break - elif victim in var.ROLES["harlot"] and var.HVISITED.get(victim) and victim not in dead: + elif victim in var.ROLES["harlot"] and var.HVISITED.get(victim) and victim not in var.DYING and victim not in dead: if victim in onlybywolves: message.append("The wolves' selected victim was a harlot, who was not at home last night.") novictmsg = False