From 717c6397830ee6a6a57d1715bd3a022a8cec4c82 Mon Sep 17 00:00:00 2001 From: Garrett Cox Date: Tue, 13 Sep 2022 00:56:26 -0500 Subject: [PATCH] Fix adult wallet having its own max capacity --- soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp b/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp index 47acc746c..7888ea9e5 100644 --- a/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp +++ b/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp @@ -276,10 +276,6 @@ ItemTrackerNumbers GetItemCurrentAndMax(ItemTrackerItem item) { result.currentAmmo = AMMO(ITEM_SLINGSHOT); break; case ITEM_WALLET_ADULT: - result.currentCapacity = CUR_CAPACITY(UPG_WALLET); - result.maxCapacity = 200; - result.currentAmmo = gSaveContext.rupees; - break; case ITEM_WALLET_GIANT: result.currentCapacity = CUR_CAPACITY(UPG_WALLET); result.maxCapacity = 500;