Skip to content

Commit

Permalink
Fix sleepy wiki page
Browse files Browse the repository at this point in the history
  • Loading branch information
skizzerz committed Jan 7, 2024
1 parent 8f37de1 commit 9f3267b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gamemodes/sleepy.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ def __init__(self, arg=""):
self.NIGHTMARE_MAX = 1
self.TURN_CHANCE = 3/5
# Make sure priest is always prophet AND blessed, and that drunk is always gunner
self.SECONDARY_ROLES["blessed villager"] = ["priest"]
self.SECONDARY_ROLES["prophet"] = ["priest"]
self.SECONDARY_ROLES["gunner"] = ["village drunk"]
self.SECONDARY_ROLES["blessed villager"] = {"priest"}
self.SECONDARY_ROLES["prophet"] = {"priest"}
self.SECONDARY_ROLES["gunner"] = {"village drunk"}
self.EVENTS = {
"dullahan_targets": EventListener(self.dullahan_targets),
"transition_night_begin": EventListener(self.setup_nightmares),
Expand Down

0 comments on commit 9f3267b

Please sign in to comment.