From 0a394b03563757eacf3d25abaa711ffdb280b547 Mon Sep 17 00:00:00 2001 From: Pepper0ni <93387759+Pepper0ni@users.noreply.github.com> Date: Wed, 2 Apr 2025 13:08:10 +0100 Subject: [PATCH] post merge stuff --- soh/soh/Enhancements/randomizer/hint.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/Enhancements/randomizer/hint.cpp b/soh/soh/Enhancements/randomizer/hint.cpp index d35272d6a..f171378ad 100644 --- a/soh/soh/Enhancements/randomizer/hint.cpp +++ b/soh/soh/Enhancements/randomizer/hint.cpp @@ -413,13 +413,13 @@ oJson Hint::toJSON() { if (items.size() == 1) { log["item"] = StaticData::GetItemTable()[items[0]] .GetName() - ..GetForCurrentLanguage(MF_RAW)); // RANDOTODO change to CustomMessage; + .GetForCurrentLanguage(MF_RAW); // RANDOTODO change to CustomMessage; } else if (items.size() > 1) { std::vector itemStrings = {}; for (size_t c = 0; c < items.size(); c++) { itemStrings.push_back(StaticData::GetItemTable()[items[c]] .GetName() - ..GetForCurrentLanguage(MF_RAW))); // RANDOTODO change to CustomMessage + .GetForCurrentLanguage(MF_RAW)); // RANDOTODO change to CustomMessage } log["items"] = itemStrings; }