From 1944a797d9cc080ecc8d43f465113b8c0b792797 Mon Sep 17 00:00:00 2001 From: gymnast86 Date: Sat, 29 Aug 2026 01:30:58 -0700 Subject: [PATCH] fix goron spginwater rus check --- mods/randomizer/generator/data/locations.yaml | 2 ++ mods/randomizer/src/tools.cpp | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mods/randomizer/generator/data/locations.yaml b/mods/randomizer/generator/data/locations.yaml index e4e811c0a0..a85d5aece6 100644 --- a/mods/randomizer/generator/data/locations.yaml +++ b/mods/randomizer/generator/data/locations.yaml @@ -1778,6 +1778,8 @@ Freestanding Item: - Stage: 56 Flag: 0x80 + Name Lookup: + - Goron Springwater Rush - Name: Eldin Field Water Bomb Fish Grotto Chest Original Item: Purple Rupee diff --git a/mods/randomizer/src/tools.cpp b/mods/randomizer/src/tools.cpp index 8b6149d086..46bff87f55 100644 --- a/mods/randomizer/src/tools.cpp +++ b/mods/randomizer/src/tools.cpp @@ -522,6 +522,7 @@ std::string nameLookupOverride(const std::string& locationName) { {"Goron Mines Gor Amato Key Shard", ITEM_CHECK_KEY_SHARD_1}, {"Goron Mines Gor Ebizo Key Shard", ITEM_CHECK_KEY_SHARD_2}, {"Goron Mines Gor Liggs Key Shard", ITEM_CHECK_KEY_SHARD_3}, + {"Goron Springwater Rush", ITEM_CHECK_GORON_SPRINGWATER_RUSH}, {"Herding Goats Reward", ITEM_CHECK_GOATS_REWARD}, {"Hyrule Castle King Bulblin Key", ITEM_CHECK_BULBLIN_KEY}, {"Ilia Charm", ITEM_CHECK_ILIA_CHARM}, @@ -874,4 +875,4 @@ const char* getYesNoText(bool flag) { return "Yes"; } return "No"; -} \ No newline at end of file +}