banned/modules
nyuszika7h 55cc34df3f Fix werecrow dying when wolf is shot dead at night
Previously, if a wolf was shot dead at night, any werecrows that have
observed were removed from the game without announcement, although they
would remain voiced.

For those who are curious, this is because lists are copied by reference
on assignment in Python; any changes made on the variable you assigned
the list to will be reflected in the original list. This can be avoided
by making a shallow copy of the list using `list(x)` or `x[:]`.
2013-09-18 20:14:52 +02:00
..
__init__.py major restructuring 2011-12-28 17:44:11 -06:00
common.py allow the enabling of certain debug mode commands in normal mode via config 2012-07-14 21:34:11 -05:00
sabotage.py various tweaks 2011-12-29 17:41:25 -06:00
wolfgame.py Fix werecrow dying when wolf is shot dead at night 2013-09-18 20:14:52 +02:00