From 13ee2e688d92266f4d7c05ab28d88f544e68efba Mon Sep 17 00:00:00 2001 From: Schicksal88 Date: Thu, 19 Jun 2025 06:17:36 +0200 Subject: [PATCH] Update soh/soh/Enhancements/custom-message/CustomMessageManager.cpp MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Philip Dubé --- soh/soh/Enhancements/custom-message/CustomMessageManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp b/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp index e378451bd..0ebba19ec 100644 --- a/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp +++ b/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp @@ -627,7 +627,7 @@ void CustomMessage::SetSingularPlural() { for (std::string& str : messages) { size_t firstBar = str.find('|'); if (firstBar != std::string::npos) { - size_t euroSign = str.find('€'); + size_t euroSign = str.find("€"); size_t secondBar = str.find('|', firstBar + 1); if (secondBar != std::string::npos) { size_t thirdBar = str.find('|', secondBar + 1);