Skip to content

Commit 9d3090c

Browse files
committed
Merge branch 'Dev' into dev-fenhl
# Conflicts: # ASM/build/bundle.o # data/generated/rom_patch.txt
2 parents bafd242 + d0198bd commit 9d3090c

File tree

6 files changed

+55
-53
lines changed

6 files changed

+55
-53
lines changed

ASM/build/bundle.o

0 Bytes
Binary file not shown.

ASM/c/item_effects.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ void open_gate_and_mask_shop(z64_file_t* save, int16_t arg1, int16_t arg2) {
243243
// Set the openingState so it starts to open
244244
BgGateShutter* gate = (BgGateShutter*)curr;
245245
gate->openingState = 2;
246-
return;
246+
break;
247247
}
248248
curr = curr->next;
249249
}

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
* The Deku Shield pot in the Spirit Temple is no longer shuffled when both `Fix Broken Drops` and `Include Empty Pots` are off.
1616
* For consistency with other location types, excluded pot/crate/beehive/wonderitem/etc. locations no longer behave as if their shuffle setting was off.
1717
* The Triforce Piece counter display has been moved to a CRT-safe position.
18+
* Fix Complete Mask Quest not working if Zelda's Letter is found in Kakariko.
1819

1920
## Other changes
2021
* Big poe souls can now be collected while riding Epona.

Patches.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -569,6 +569,7 @@ def make_bytes(txt: str, size: int) -> list[int]:
569569
world.settings.shuffle_song_items not in ('vanilla', 'song')
570570
or world.distribution.songs_as_items
571571
or any(name in song_list and record.count for name, record in world.settings.starting_items.items())
572+
or any(name in song_list and count for name, count in world.randomized_starting_items.items())
572573
or world.settings.shuffle_individual_ocarina_notes
573574
)
574575
if songs_as_items:

data/generated/rom_patch.txt

Lines changed: 51 additions & 51 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '8.3.28'
1+
__version__ = '8.3.30'
22

33
# This is a supplemental version number for branches based off of main dev.
44
supplementary_version = 1

0 commit comments

Comments
 (0)