From a65b3711115617e0b80c947d3b278c7257e3adba Mon Sep 17 00:00:00 2001 From: "Vgr E. Barry" Date: Mon, 18 Apr 2016 22:50:35 -0400 Subject: [PATCH] Blacklist wild child from maelstrom --- src/gamemodes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gamemodes.py b/src/gamemodes.py index 28f4d75..d21e3fa 100644 --- a/src/gamemodes.py +++ b/src/gamemodes.py @@ -1127,7 +1127,7 @@ class MaelstromMode(GameMode): # needs to be added above for when dulls are added during the game # matchmaker is conditionally enabled during night 1 only # monster and demoniac are nearly impossible to counter and don't add any interesting gameplay - self.roles = list(var.ROLE_GUIDE.keys() - var.TEMPLATE_RESTRICTIONS.keys() - {"amnesiac", "clone", "dullahan", "matchmaker", "monster", "demoniac"}) + self.roles = list(var.ROLE_GUIDE.keys() - var.TEMPLATE_RESTRICTIONS.keys() - {"amnesiac", "clone", "dullahan", "matchmaker", "monster", "demoniac", "wild child"}) def startup(self): events.add_listener("role_attribution", self.role_attribution)