Fix 8+ villagergame

This commit is contained in:
skizzerz 2017-10-19 22:58:42 -05:00
parent 32e0f88e87
commit 4df8072afd

View File

@ -237,7 +237,8 @@ class VillagergameMode(GameMode):
seer = list(var.ROLES["seer"])[0] seer = list(var.ROLES["seer"])[0]
if len(var.ROLES["harlot"]) == 1: if len(var.ROLES["harlot"]) == 1:
hlt = list(var.ROLES["harlot"])[0] hlt = list(var.ROLES["harlot"])[0]
hvst = var.HVISITED.get(hlt) from src.roles import harlot
hvst = harlot.VISITED.get(hlt)
if hvst: if hvst:
pl.remove(hlt) pl.remove(hlt)
if len(var.ROLES["shaman"]) == 1: if len(var.ROLES["shaman"]) == 1: