From cb21208b4b93d37430b1ce1a711d265fd19af27c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Sun, 11 Jan 2026 07:39:15 +0000 Subject: [PATCH] Fix regression causing BGS to be missing from item pool (#6131) Exclude from minimal item pool --- soh/soh/Enhancements/randomizer/3drando/item_pool.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp b/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp index 26c7119fa..78f09a8d9 100644 --- a/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp @@ -175,6 +175,7 @@ void GenerateItemPool() { AddItemToPool(RG_HYLIAN_SHIELD, 1, 1, 1, 1); AddItemToPool(RG_PROGRESSIVE_STRENGTH, 4, 3, 3, 3); AddItemToPool(RG_DOUBLE_DEFENSE, 2, 1, 0, 0); + AddItemToPool(RG_BIGGORON_SWORD, 2, 1, 1, 0); bool isScrubs = ctx->GetOption(RSK_SHUFFLE_SCRUBS).Is(RO_SCRUBS_ALL); AddFixedItemToPool(RG_DEKU_SHIELD, isScrubs ? 1 : 2); AddFixedItemToPool(RG_RECOVERY_HEART, isScrubs ? 6 : 11);