Skip to content

Commit

Permalink
The Messenger: Fix missing rules for Double Swing Saws (ArchipelagoMW…
Browse files Browse the repository at this point in the history
…#3562)

* The Messenger: Fix missing rules for Double Swing Saws

* i put it in the wrong dictionary

* remove unnecessary call
  • Loading branch information
alwaysintreble authored and sflavelle committed Jun 20, 2024
1 parent d9177c1 commit de7de40
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions worlds/messenger/rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,8 @@ def __init__(self, world: "MessengerWorld") -> None:
self.is_aerobatic,
"Autumn Hills Seal - Trip Saws":
self.has_wingsuit,
"Autumn Hills Seal - Double Swing Saws":
self.has_vertical,
# forlorn temple
"Forlorn Temple Seal - Rocket Maze":
self.has_vertical,
Expand Down Expand Up @@ -430,6 +432,8 @@ def __init__(self, world: "MessengerWorld") -> None:
{
"Autumn Hills Seal - Spike Ball Darts":
lambda state: self.has_vertical(state) and self.has_windmill(state) or self.is_aerobatic(state),
"Autumn Hills Seal - Double Swing Saws":
lambda state: self.has_vertical(state) or self.can_destroy_projectiles(state),
"Bamboo Creek - Claustro":
self.has_wingsuit,
"Bamboo Creek Seal - Spike Ball Pits":
Expand Down

0 comments on commit de7de40

Please sign in to comment.