Skip to content

Commit

Permalink
Corrected Logic Rules.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Radagast81 committed May 3, 2024
1 parent c8e70fc commit f625bb0
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions worlds/yoshisisland/Rules.py
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ def set_normal_rules(world: "YoshisIslandWorld") -> None:

set_rule(world.multiworld.get_location("GO! GO! MARIO!!: Red Coins", player), lambda state: state.has("Super Star", player))
set_rule(world.multiworld.get_location("GO! GO! MARIO!!: Flowers", player), lambda state: state.has("Super Star", player))
set_rule(world.multiworld.get_location("GO! GO! MARIO!!: Stars", player), lambda state: logic.has_midring(state) or state.has("Tulip", player))
set_rule(world.multiworld.get_location("GO! GO! MARIO!!: Level Clear", player), lambda state: state.has("Super Star", player))

set_rule(world.multiworld.get_location("The Cave Of The Lakitus: Red Coins", player), lambda state: state.has_all({"Large Spring Ball", "! Switch", "Egg Launcher"}, player))
Expand Down

0 comments on commit f625bb0

Please sign in to comment.