From ae910355c686acd3dbf95651f7adae6768770482 Mon Sep 17 00:00:00 2001 From: aMannus Date: Tue, 28 Mar 2023 10:00:17 +0200 Subject: [PATCH] Fake 999 prices with shops/scrubs --- soh/soh/Enhancements/randomizer/randomizer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/randomizer.cpp b/soh/soh/Enhancements/randomizer/randomizer.cpp index 3e2cd3e60..f0764aaa9 100644 --- a/soh/soh/Enhancements/randomizer/randomizer.cpp +++ b/soh/soh/Enhancements/randomizer/randomizer.cpp @@ -4654,7 +4654,7 @@ CustomMessageEntry Randomizer::GetMerchantMessage(RandomizerInf randomizerInf, u } else { shopItemName = EnumToSpoilerfileGetName[shopItemGet]; } - u16 shopItemPrice = merchantPrices[rc]; + u16 shopItemPrice = 999; if (textId == TEXT_SCRUB_RANDOM && shopItemPrice == 0) { messageEntry = CustomMessageManager::Instance->RetrieveMessage(Randomizer::merchantMessageTableID, TEXT_SCRUB_RANDOM_FREE);