From 87d7b0d3759a04a53236a5161588646d1681f8ce Mon Sep 17 00:00:00 2001 From: jacob1 Date: Thu, 27 Nov 2014 00:07:41 -0500 Subject: [PATCH] impatience totem holder is added to the start of the voters list prevents them from being killed by desperation totem when they didn't actually vote --- modules/wolfgame.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/wolfgame.py b/modules/wolfgame.py index 272525c..1df4365 100644 --- a/modules/wolfgame.py +++ b/modules/wolfgame.py @@ -865,7 +865,7 @@ def chk_decision(cli, force = ""): numvotes = 0 for v in var.IMPATIENT: if v in pl and v not in voters and v != votee and v not in var.WOUNDED and v not in var.ASLEEP: - voters.append(v) + voters = [v] + voters for v in voters: weight = 1 imp_count = sum([1 if p == v else 0 for p in var.IMPATIENT])