Skip to content

Commit

Permalink
OoS: Fixed an issue with D0 end warp when it was linked to D8 entrance
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinopony committed Jul 5, 2024
1 parent 1d10d07 commit c2bd14d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions worlds/tloz_oos/patching/Functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -549,9 +549,10 @@ def set_dungeon_warps(rom: RomData, patch_data):

# D0 Chest Warp (hardcoded warp using a specific format)
d0_new_entrance = DUNGEON_ENTRANCES[entrance_map["d0"]]
rom.write_bytes(0x2bbe5, [
rom.write_bytes(0x2bbe4, [
d0_new_entrance["group"] | 0x80,
d0_new_entrance["room"],
d0_new_entrance["group"],
0x00,
d0_new_entrance["position"]
])

Expand Down

0 comments on commit c2bd14d

Please sign in to comment.