Revert "Disable wild child in random"

This reverts commit b089a6eee8.
This commit is contained in:
skizzerz 2016-08-21 14:10:43 -05:00
parent b089a6eee8
commit 411d8a6509

View File

@ -581,7 +581,7 @@ class RandomMode(GameMode):
wolves = var.WOLF_ROLES - {"wolf cub"}
addroles[random.choice(list(wolves))] += 1 # make sure there's at least one wolf role
roles = list(var.ROLE_GUIDE.keys() - var.TEMPLATE_RESTRICTIONS.keys() - {"villager", "cultist", "amnesiac", "wild child"})
roles = list(var.ROLE_GUIDE.keys() - var.TEMPLATE_RESTRICTIONS.keys() - {"villager", "cultist", "amnesiac"})
while lpl:
addroles[random.choice(roles)] += 1
lpl -= 1