From a958a5b14fdb9b188431aa15db502ebf9057e28d Mon Sep 17 00:00:00 2001 From: Fenhl Date: Mon, 13 May 2024 09:07:20 +0000 Subject: [PATCH] Consider free scarecrow in logic without ocarina buttons --- State.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/State.py b/State.py index 1b0534d6d..9d1670001 100644 --- a/State.py +++ b/State.py @@ -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: