From 9991a95ab1434549e9e5c3b5d02a2eb85315a19a Mon Sep 17 00:00:00 2001 From: Pepper0ni <93387759+Pepper0ni@users.noreply.github.com> Date: Tue, 20 Jan 2026 15:39:03 +0000 Subject: [PATCH] fix maps and compasses not being added to the pool (#6180) --- soh/soh/Enhancements/randomizer/3drando/item_pool.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp b/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp index 31e30614b..cfa454be3 100644 --- a/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp +++ b/soh/soh/Enhancements/randomizer/3drando/item_pool.cpp @@ -827,11 +827,11 @@ void GenerateItemPool() { } else if (ctx->GetOption(RSK_SHUFFLE_MAPANDCOMPASS).IsNot(RO_DUNGEON_ITEM_LOC_STARTWITH)) { for (auto dungeon : ctx->GetDungeons()->GetDungeonList()) { if (dungeon->GetMap() != RG_NONE) { - AddFixedItemToPool(dungeon->GetMap(), false); + AddFixedItemToPool(dungeon->GetMap(), 1, false); } if (dungeon->GetCompass() != RG_NONE) { - AddFixedItemToPool(dungeon->GetCompass(), false); + AddFixedItemToPool(dungeon->GetCompass(), 1, false); } } }