From 59a2247a12ed3aaae36774c70e5c15dfe8c46877 Mon Sep 17 00:00:00 2001 From: skizzerz Date: Tue, 28 Apr 2015 20:47:53 -0500 Subject: [PATCH] Fix silenced ghost still killing (at random) --- src/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wolfgame.py b/src/wolfgame.py index 445b8d9..a576f10 100644 --- a/src/wolfgame.py +++ b/src/wolfgame.py @@ -3324,7 +3324,7 @@ def transition_day(cli, gameid=0): for wolf in wolves: villagers.remove(wolf) for ghost, target in var.VENGEFUL_GHOSTS.items(): - if target[0] == "!": + if target[0] == "!" or ghost in var.SILENCED: continue if ghost not in var.OTHER_KILLS: if target == "wolves":