From 73030424cd30b09fed986d717b19118814ccf2fd Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Thu, 25 Feb 2016 15:13:57 -0700 Subject: [PATCH] Blacklist monster and demoniac in maelstrom --- src/gamemodes.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gamemodes.py b/src/gamemodes.py index 65dc996..5714320 100644 --- a/src/gamemodes.py +++ b/src/gamemodes.py @@ -1060,7 +1060,8 @@ class MaelstromMode(GameMode): # dullahan doesn't really work in this mode either, if enabling anyway special logic to determine kill list # needs to be added above for when dulls are added during the game # matchmaker is conditionally enabled during night 1 only - self.roles = list(var.ROLE_GUIDE.keys() - var.TEMPLATE_RESTRICTIONS.keys() - {"amnesiac", "clone", "dullahan", "matchmaker"}) + # 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"}) def startup(self): events.add_listener("role_attribution", self.role_attribution)