We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 530617c commit 49e1fd0Copy full SHA for 49e1fd0
worlds/messenger/rules.py
@@ -63,7 +63,10 @@ def __init__(self, world: "MessengerWorld") -> None:
63
"Searing Crags Seal - Triple Ball Spinner": self.has_vertical,
64
"Searing Crags - Astral Tea Leaves":
65
lambda state: state.can_reach("Ninja Village - Astral Seed", "Location", self.player),
66
- "Searing Crags - Key of Strength": lambda state: state.has("Power Thistle", self.player),
+ "Searing Crags - Key of Strength": lambda state: state.has("Power Thistle", self.player)
67
+ and (self.has_dart(state)
68
+ or (self.has_wingsuit(state)
69
+ and self.can_destroy_projectiles(state))),
70
# glacial peak
71
"Glacial Peak Seal - Ice Climbers": self.has_dart,
72
"Glacial Peak Seal - Projectile Spike Pit": self.can_destroy_projectiles,
0 commit comments