fix bug causing songs to never be hinted
This commit is contained in:
parent
bc8e8c5daf
commit
890f71a477
|
@ -1257,7 +1257,7 @@ def hintExclusions(world, clear_cache=False):
|
||||||
world.hint_exclusions = []
|
world.hint_exclusions = []
|
||||||
|
|
||||||
for location in world.get_locations():
|
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.hint_exclusions.append(location.name)
|
||||||
|
|
||||||
world_location_names = [
|
world_location_names = [
|
||||||
|
|
Loading…
Reference in New Issue