Fix wolf retract

This commit is contained in:
skizzerz 2014-07-24 20:41:57 -05:00
parent 5cf86473e6
commit 9f5b30aa95

View File

@ -2387,7 +2387,7 @@ def wolfretract(cli, nick, rest):
return
role = var.get_role(nick)
if role not in ("wolf", "werecrow", "hunter") or nick not in var.VENGEFUL_GHOSTS.keys():
if role not in ("wolf", "werecrow", "hunter") and nick not in var.VENGEFUL_GHOSTS.keys():
return
if var.PHASE != "night":
pm(cli, nick, "You may only retract at night.")