Merge pull request #12 from skizzerz/seercrowfix

Make seer see werecrow as wolf instead of crow
This commit is contained in:
Robert Wall 2013-07-12 20:22:44 -07:00
commit a7a71650c9

View File

@ -1993,7 +1993,7 @@ def see(cli, nick, rest):
pm(cli, nick,"\u0002{0}\u0002 is currently not playing.".format(victim)) pm(cli, nick,"\u0002{0}\u0002 is currently not playing.".format(victim))
return return
victim = pl[pll.index(target)] victim = pl[pll.index(target)]
if victim in var.CURSED: if victim in var.CURSED or var.get_role(victim) == "werecrow":
role = "wolf" role = "wolf"
elif var.get_role(victim) == "traitor": elif var.get_role(victim) == "traitor":
role = "villager" role = "villager"