Skip to content

Commit 2c6cd98

Browse files
committed
Merge 'Fix songs as items to only depend on settings' (#2478)
2 parents e6fc843 + 9c7ba9d commit 2c6cd98

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Patches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def make_bytes(txt: str, size: int) -> list[int]:
448448
world.settings.shuffle_song_items != 'song'
449449
or world.distribution.songs_as_items
450450
or any(name in song_list and record.count for name, record in world.settings.starting_items.items())
451-
or any(name in song_list and count for name, count in world.randomized_starting_items.items())
451+
or (world.settings.random_starting_items_count > 0 and 'songs' not in world.settings.random_starting_items_exclude)
452452
or world.settings.shuffle_individual_ocarina_notes
453453
)
454454
if songs_as_items:

version.py

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

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

0 commit comments

Comments
 (0)