From 6bad370d13d81712dd3aaa21991b478ce59f9528 Mon Sep 17 00:00:00 2001 From: Caladius Date: Fri, 28 Jun 2024 10:34:38 -0400 Subject: [PATCH] Comment out Hint generation (temp) --- soh/soh/Enhancements/randomizer/hint.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/hint.cpp b/soh/soh/Enhancements/randomizer/hint.cpp index 7d62d29c7bd..99e122830cc 100644 --- a/soh/soh/Enhancements/randomizer/hint.cpp +++ b/soh/soh/Enhancements/randomizer/hint.cpp @@ -240,7 +240,7 @@ const std::vector Hint::GetAllMessageStrings(MessageFormat format) std::vector hintMessages = {}; uint8_t numMessages = GetNumberOfMessages(); for (int c = 0; c < numMessages; c++){ - hintMessages.push_back(GetHintMessage(format, c).GetForCurrentLanguage(format)); + //hintMessages.push_back(GetHintMessage(format, c).GetForCurrentLanguage(format)); } return hintMessages; }