Temporarily disable new roles in random

This commit is contained in:
Vgr E. Barry 2015-10-30 20:26:07 -04:00
parent ffacac3764
commit ee3a2c6ab9

View File

@ -504,7 +504,7 @@ class RandomMode(GameMode):
wolves = var.WOLF_ROLES - {"wolf cub"} wolves = var.WOLF_ROLES - {"wolf cub"}
addroles[random.choice(list(wolves))] += 1 # make sure there's at least one wolf role 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"}) roles = list(var.ROLE_GUIDE.keys() - var.TEMPLATE_RESTRICTIONS.keys() - {"villager", "cultist", "amnesiac", "succubus", "doomsayer", "demoniac"})
while lpl: while lpl:
addroles[random.choice(roles)] += 1 addroles[random.choice(roles)] += 1
lpl -= 1 lpl -= 1