From 411d8a65094fa7440f0552554e7bd61db851c8da Mon Sep 17 00:00:00 2001 From: skizzerz Date: Sun, 21 Aug 2016 14:10:43 -0500 Subject: [PATCH] Revert "Disable wild child in random" This reverts commit b089a6eee8ab1aff7ce881cb329b6c157cb8709c. --- src/gamemodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamemodes.py b/src/gamemodes.py index 44fdeb0..67ba9d9 100644 --- a/src/gamemodes.py +++ b/src/gamemodes.py @@ -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