Browse Source

fixed bug that allowed gunner to be pm'd after death

master
jcao219 13 years ago
parent
commit
02b7ed873e
  1. 4
      wolfgame.py

4
wolfgame.py

@ -1780,6 +1780,10 @@ def transition_night(cli): @@ -1780,6 +1780,10 @@ def transition_night(cli):
cli.msg(d, 'You have been drinking too much! You are the \u0002village drunk\u0002.')
for g in tuple(var.GUNNERS.keys()):
if not var.FIRST_NIGHT:
break
if g not in ps:
continue
gun_msg = ("You hold a gun that shoots special silver bullets. You may only use it "+
"during the day. If you shoot a wolf, (s)he will die instantly, but if you "+
"shoot a villager, that villager will likely survive. You get {0}.")

Loading…
Cancel
Save