Skip to content

Commit

Permalink
Genesis
Browse files Browse the repository at this point in the history
  • Loading branch information
Ehseezed committed Oct 31, 2023
1 parent 4ef9652 commit 552c874
Show file tree
Hide file tree
Showing 2 changed files with 4 additions 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 @@ -88,7 +88,7 @@ def get_location_datas(world: Optional[MultiWorld], player: Optional[int]):
LocationData("GFS Thoth", "GFS Thoth: Research Camp", 8680056),
LocationData("GFS Thoth", "GFS Thoth: Hornoad room", 8680057, lambda state: state.has("Power Bomb", player)),
LocationData("GFS Thoth", "GFS Thoth: Outside the Front of the Ship", 8680058, lambda state: state.has("Power Bomb", player)),
LocationData("GFS Thoth", "GFS Thoth: Genesis", 8680059, lambda state: state.has("Power Bomb", player)),
LocationData("Genesis", "Genesis: Boss", 8680059, lambda state: state.has("Power Bomb", player)),

LocationData("The Tower", "The Tower: Beside Hydro Pipe", 8680060, lambda state: state.has("Screw Attack", player)),
LocationData("The Tower", "The Tower: Right Side of Tower", 8680061),
Expand Down
3 changes: 3 additions & 0 deletions worlds/am2r/regions.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,9 @@ def create_regions_and_locations(world: MultiWorld, player: int):
connect(world, player, "Main Caves", "GFS Thoth"),
connect(world, player, "GFS Thoth", "Main Caves"),

connect(world, player, "GFS Thoth", "Genesis")
connect(world, player, "GFS Thoth", "Genesis")

connect(world, player, "Guardian", "Golden Temple"),
connect(world, player, "Golden Temple", "Guardian"),

Expand Down

0 comments on commit 552c874

Please sign in to comment.