diff --git a/Patches.py b/Patches.py index ce8bfec32..b0a9faa09 100644 --- a/Patches.py +++ b/Patches.py @@ -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': diff --git a/README.md b/README.md index 2314a0972..c0674799d 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/version.py b/version.py index 45b193f86..0ec49cbdc 100644 --- a/version.py +++ b/version.py @@ -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