Skip to content

Commit

Permalink
Lojic fix for unexpected grav
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehseezed committed Nov 5, 2023
1 parent e6eff51 commit b009cfd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion worlds/am2r/locations.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get_location_datas(world: Optional[MultiWorld], player: Optional[int]):

LocationData("Ice Beam", "Serris: Ice Beam", 8680085, lambda state: state.has("Ice Beam", player) and (state.has("Super Missile", player) or state.has("Speed Booster", player))), # speed / Supers

LocationData("Deep Caves", "Deep Caves: Ball Spark", 8680086, logic.AM2R_has_ballspark),
LocationData("Deep Caves", "Deep Caves: Ball Spark", 8680086, lambda state: state.has("Gravity Suit", player) and logic.AM2R_has_ballspark(state)),
LocationData("Deep Caves", "Deep Caves: Behind the Bomb Block", 8680087, logic.AM2R_can_bomb),

LocationData("Deep Caves", "Deep Caves: After Omega", 8680088),
Expand Down

0 comments on commit b009cfd

Please sign in to comment.