Skip to content

Commit

Permalink
Update Rules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesbrq committed Apr 20, 2024
1 parent 91fa7f1 commit 8421095
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions worlds/mlss/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -287,11 +287,11 @@ def set_rules(world: "MLSSWorld", excluded):
lambda state: StateLogic.rose(state, world.player))
add_rule(world.multiworld.get_location("Teehee Valley Past Ultra Hammer Rocks Coin Block", world.player),
lambda state: StateLogic.ultra(state, world.player))
add_rule(world.multiworld.get_location("S.S Chuckola Storage Room Coin Block 1", world.player),
add_rule(world.multiworld.get_location("S.S. Chuckola Storage Room Coin Block 1", world.player),
lambda state: StateLogic.super(state, world.player) or StateLogic.canDash(state, world.player))
add_rule(world.multiworld.get_location("Gwarhar Lagoon First Underwater Area Room 2 Coin Block", world.player),
lambda state: StateLogic.canDash(state, world.player) and (StateLogic.membership(state, world.player) or StateLogic.surfable(state, world.player)))
add_rule(world.multiworld.get_location("S.S Chuckola Storage Room Coin Block 2", world.player),
add_rule(world.multiworld.get_location("S.S. Chuckola Storage Room Coin Block 2", world.player),
lambda state: StateLogic.super(state, world.player) or StateLogic.canDash(state, world.player))
add_rule(world.multiworld.get_location("Jokes End Second Floor West Room Coin Block", world.player),
lambda state: StateLogic.ultra(state, world.player) and StateLogic.fire(state, world.player)
Expand Down

0 comments on commit 8421095

Please sign in to comment.