From 6bf1fb8d46e530556824388943cadd60d74e3463 Mon Sep 17 00:00:00 2001 From: Dusk <59410450+DuskTheUmbreon@users.noreply.github.com> Date: Sat, 18 Jul 2026 12:37:04 -0700 Subject: [PATCH] Make adult slingshot check for slingshot Currently, only actually checks for "is_adult and bow and can_equipswap_adult", and that "item" is slingshot. It does not actually check that you have the slingshot. This makes it also check for the slingshot. --- data/LogicHelpers.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/LogicHelpers.json b/data/LogicHelpers.json index faf07bbcbd..38551d162d 100644 --- a/data/LogicHelpers.json +++ b/data/LogicHelpers.json @@ -92,7 +92,7 @@ or (_is_child_item(item) and is_child and item) or (_is_swappable_adult(item) and can_equip_swap_adult and item) or (_is_swappable_child(item) and can_equip_swap_child and item) - or (_adult_slingshot(item) and is_adult and Bow and can_equip_swap_adult)", + or (_adult_slingshot(item) and is_adult and Bow and can_equip_swap_adult and item)", "_is_magic_item(item)": "item == Dins_Fire or item == Farores_Wind or item == Nayrus_Love or item == Lens_of_Truth", "_is_adult_item(item)": "item == Bow or item == Megaton_Hammer or item == Iron_Boots or item == Hover_Boots or item == Hookshot or item == Longshot or item == Silver_Gauntlets or item == Golden_Gauntlets or item == Goron_Tunic or item == Zora_Tunic or item == Scarecrow or item == Distant_Scarecrow or item == Mirror_Shield", "_is_child_item(item)": "item == Slingshot or item == Boomerang or item == Kokiri_Sword or item == Sticks or item == Deku_Shield",