From 99e60b81fdd11ab5238f3f11046ed518f4c43581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Sun, 8 Mar 2026 04:28:55 +0000 Subject: [PATCH] fix rando fire temple goron text formatting (#6332) AutoFormat isn't suitable for text using escape codes, but unlike other texts this collection uses a mix of escape codes & our formatting codes. In such scenarios Format avoids mangling things --- soh/soh/Enhancements/randomizer/Messages/Goron.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/Messages/Goron.cpp b/soh/soh/Enhancements/randomizer/Messages/Goron.cpp index b11bc2da4..9515890c0 100644 --- a/soh/soh/Enhancements/randomizer/Messages/Goron.cpp +++ b/soh/soh/Enhancements/randomizer/Messages/Goron.cpp @@ -86,7 +86,7 @@ void BuildGoronMessage(uint16_t* textId, bool* loadFromMessageTable) { CustomMessage msg = ShipUtils::RandomElement(FireTempleGoronMessages); msg.Replace("[[days]]", std::to_string(gSaveContext.totalDays)); msg.Replace("[[a_btn]]", std::to_string(gSaveContext.ship.stats.count[COUNT_BUTTON_PRESSES_A])); - msg.AutoFormat(); + msg.Format(); msg.LoadIntoFont(); *loadFromMessageTable = false; }