Skip to content

Commit 49e1fd0

Browse files
The Messenger: ease rule on key of strength a bit (#2541)
Makes the logic for accessing key of strength just a tiny bit easier since a few players said it was really difficult.
1 parent 530617c commit 49e1fd0

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

worlds/messenger/rules.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ def __init__(self, world: "MessengerWorld") -> None:
6363
"Searing Crags Seal - Triple Ball Spinner": self.has_vertical,
6464
"Searing Crags - Astral Tea Leaves":
6565
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),
66+
"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))),
6770
# glacial peak
6871
"Glacial Peak Seal - Ice Climbers": self.has_dart,
6972
"Glacial Peak Seal - Projectile Spike Pit": self.can_destroy_projectiles,

0 commit comments

Comments
 (0)