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

This commit is contained in:
skizzerz 2014-08-10 12:05:42 -05:00
parent c6359b3908
commit cd43225b53

View File

@ -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