Skip to content

Commit

Permalink
Merge 'Speedup the other three Steal Epona cutscenes' (#2212)
Browse files Browse the repository at this point in the history
  • Loading branch information
fenhl committed May 6, 2024
2 parents 4a7beaa + 804ecea commit f2980f2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion Patches.py
Original file line number Diff line number Diff line change
Expand Up @@ -753,7 +753,10 @@ def make_bytes(txt: str, size: int) -> list[int]:
#rom.write_bytes(0x21B20AA, [0x00, 0x01, 0x00, 0x02])

# Speed up Epona escape
rom.write_bytes(0x1FC8B36, [0x00, 0x2A])
rom.write_bytes(0x1FC79E6, [0x00, 0x54]) # South
rom.write_bytes(0x1FC7F06, [0x00, 0x54]) # East
rom.write_bytes(0x1FC8556, [0x00, 0x54]) # West
rom.write_bytes(0x1FC8B36, [0x00, 0x2A]) # Front gate

# Speed up draining the well
rom.write_bytes(0xE0A010, [0x00, 0x2A, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02])
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@ issue. You should always Hard Reset to avoid this issue entirely.
* Treasure Chest Game key and silver rupee options are now included in `Randomize Main Rule Settings`.
* Meg will now take less time before respawning after getting hurt.
* Pause menu has been modified so that equip swap will work again.
* The cutscenes for stealing Epona by jumping over a fence are now sped up. Previously, only the cutscene for jumping over the front gate was shortened.

### 8.1

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.1.32'
__version__ = '8.1.33'

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

0 comments on commit f2980f2

Please sign in to comment.