From 890f71a4774f22e24fdf9fe51b2176b3612aa3b2 Mon Sep 17 00:00:00 2001 From: espeon65536 Date: Tue, 7 Sep 2021 18:23:27 -0500 Subject: [PATCH] fix bug causing songs to never be hinted --- worlds/oot/HintList.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/oot/HintList.py b/worlds/oot/HintList.py index 866e9378..e3a08628 100644 --- a/worlds/oot/HintList.py +++ b/worlds/oot/HintList.py @@ -1257,7 +1257,7 @@ def hintExclusions(world, clear_cache=False): world.hint_exclusions = [] for location in world.get_locations(): - if location.locked or location.excluded: + if (location.locked and (location.item.type != 'Song' or world.shuffle_song_items != 'song')) or location.excluded: world.hint_exclusions.append(location.name) world_location_names = [