Skip to content

Commit

Permalink
Consider free scarecrow in logic without ocarina buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
fenhl committed May 13, 2024
1 parent 080687e commit a958a5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion State.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def region_has_shortcuts(self, region_name: str) -> bool:
def has_all_notes_for_song(self, song: str) -> bool:
# Scarecrow needs 2 different notes
if song == 'Scarecrow Song':
return self.has_ocarina_buttons(2)
return self.world.settings.free_scarecrow or self.has_ocarina_buttons(2)

notes = str(self.world.song_notes[song])
if 'A' in notes:
Expand Down

0 comments on commit a958a5b

Please sign in to comment.