fix goron mines key shards in tracker

This commit is contained in:
gymnast86
2026-07-13 23:48:25 -07:00
parent 6be65a461d
commit cf0c1c3160
+2 -2
View File
@@ -376,8 +376,8 @@ randomizer::logic::item_pool::ItemPool getSaveItemPool(randomizer::logic::world:
}
// Goron Mines Key Shards
for (int i = dItemNo_Randomizer_L2_KEY_PIECES1_e; i < dItemNo_Randomizer_L2_KEY_PIECES3_e; ++i) {
if (haveItem(i)) {
if (haveItem(dItemNo_Randomizer_L2_KEY_PIECES3_e)) {
for (int i = 0; i < 3; ++i) {
pool.push_back(world->GetItem("Goron Mines Key Shard", true));
}
}