Skip to content

Commit

Permalink
Merge 'Reduce boss doors side range to prevent voiding out in Forest …
Browse files Browse the repository at this point in the history
…temple' (#2331)
  • Loading branch information
fenhl committed Nov 17, 2024
2 parents 7c38715 + dc818d9 commit 0aa742b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -2221,6 +2221,11 @@ def update_scrub_text(message: bytearray, text_replacement: list[str], default_p
# Meg respawns after 30 frames instead of 100 frames after getting hit
rom.write_byte(0xCDA723, 0x1E)

# Boss doors side range (1.0 value is 0x46)
# This was reduced to 0x32 in 1.1, either to fix the Phantom Ganon door bug or just to match better visually the door textures.
# See https://github.com/OoTRandomizer/OoT-Randomizer/pull/2331 for more information.
rom.write_byte(0xC57AE2, 0x32)

# actually write the save table to rom
world.distribution.give_items(world, save_context)
if world.settings.starting_age == 'adult':
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ issue. You should always Hard Reset to avoid this issue entirely.
* The `Frogs Ocarina Game` misc. hint text box has been moved slightly so it no longer requires reloading the area to reread.
* Fix key rings being hinted as small keys when keys are in their own dungeons.
* Fix a crash when pressing down on the D-pad on the inventory screen in some settings combinations.
* Fix a possible void out at the Forest Temple boss door.

#### Other Changes
* Now supports custom music written for the Majora's Mask Randomizer.
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '8.2.22'
__version__ = '8.2.23'

# This is a supplemental version number for branches based off of main dev.
supplementary_version = 0
Expand Down

0 comments on commit 0aa742b

Please sign in to comment.