Fix regression causing BGS to be missing from item pool (#6131)

Exclude from minimal item pool
This commit is contained in:
Philip Dubé
2026-01-11 07:39:15 +00:00
committed by GitHub
parent 5d2d7a7f09
commit cb21208b4b

View File

@@ -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);