From 96c20333619751318b97e9fd0a22df5d68186145 Mon Sep 17 00:00:00 2001 From: briaguya <70942617+briaguya-ai@users.noreply.github.com> Date: Tue, 9 Aug 2022 22:50:25 -0400 Subject: [PATCH] fix linux release mode crash (#1124) Co-authored-by: briaguya --- soh/soh/Enhancements/custom-message/CustomMessageManager.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp b/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp index d7dd08991..8a42bef95 100644 --- a/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp +++ b/soh/soh/Enhancements/custom-message/CustomMessageManager.cpp @@ -118,6 +118,7 @@ bool CustomMessageManager::ClearMessageTable(std::string tableID) { } auto& messageTable = foundMessageTable->second; messageTable.clear(); + return true; } bool CustomMessageManager::AddCustomMessageTable(std::string tableID) {