forked from Tacoman369/MM3D-Randomizer-Dev
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update base patch to bring in all new fixes and features. * Logic Fixes1 - Adjusts Postman's Freedom to no longer be repeatable - Deku Mask is no longer required to enter Stone Tower Temple - Pirate Hideout Beehive no longer accepts Hookshot as a valid way to knock down. - Snowhead Stray Fairies behind invisible walls now expect lens of truth to collect - Mountain Village Waterfall Chest now expects lens of truth as it is invisible - Beneath the Well left side chest now expects lens of truth as it is invisible - Twin Islands Goron Track Grotto now expects either Goron Mask or Hookshot to reach * Update starting_inventory.cpp Make it so tingle maps don't get removed from pool when mapsandcompasses is start with --------- Co-authored-by: Tacoman369 <[email protected]>
- Loading branch information
1 parent
82d9ec6
commit 0bf0b84
Showing
4 changed files
with
15 additions
and
21 deletions.
There are no files selected for viewing
Submodule Z3DR
updated
17 files
+4 −1 | code/include/rnd/chest.h | |
+5 −1 | code/include/rnd/savefile.h | |
+0 −1 | code/mm.ld | |
+14 −0 | code/source/asm/fairy_patches.s | |
+6 −0 | code/source/asm/hms_patches.s | |
+8 −298 | code/source/asm/hooks.s | |
+247 −0 | code/source/asm/item_override_hooks.s | |
+110 −0 | code/source/asm/item_override_patches.s | |
+1 −210 | code/source/asm/patches.s | |
+29 −0 | code/source/asm/save_hooks.s | |
+16 −0 | code/source/asm/save_patches.s | |
+38 −0 | code/source/asm/sword_hooks.s | |
+70 −0 | code/source/asm/sword_patches.s | |
+3 −2 | code/source/rnd/chest.cpp | |
+44 −10 | code/source/rnd/item_override.cpp | |
+2 −4 | code/source/rnd/link.cpp | |
+1 −0 | code/source/rnd/savefile.cpp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters