Fix hunter passing ending night early.

This commit is contained in:
Vgr E.Barry 2014-12-04 20:38:08 -05:00
parent 6e372566c6
commit 4ac967be1d

View File

@ -3961,7 +3961,8 @@ def pass_cmd(cli, nick, rest):
var.HUNTERS.remove(nick)
pm(cli, nick, "You have decided to not kill anyone tonight.")
var.PASSED.append(nick)
if nick not in var.PASSED: # Prevents multiple entries
var.PASSED.append(nick)
#var.LOGGER.logBare(nick, "PASS", nick)
chk_nightdone(cli)