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);