From c7772e67a1583ae465dd8264e123d247ac2eb416 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 19 Aug 2025 09:07:41 -0500 Subject: [PATCH] Showcase build reset help messages on tutorial launch --- src/game/boe.actions.cpp | 4 ++++ src/game/boe.main.hpp | 2 ++ 2 files changed, 6 insertions(+) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index bb54e70e..b58f6044 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -3776,6 +3776,10 @@ void start_new_game(bool force) { void start_tutorial() { std::string version_flag = get_feature_version("tutorial"); if(!version_flag.empty()){ + #ifdef SHOWCASE + clear_pref("ReceivedHelp"); + #endif + if(party_in_memory){ cChoiceDlog confirm("restart-game",{"okay","cancel"}); confirm->getControl("warning").replaceText("{{action}}", "Starting the tutorial"); diff --git a/src/game/boe.main.hpp b/src/game/boe.main.hpp index 9318144a..e0b9757a 100644 --- a/src/game/boe.main.hpp +++ b/src/game/boe.main.hpp @@ -1,6 +1,8 @@ #include +#define SHOWCASE 1 + #ifdef __APPLE__ extern eMenuChoice menuChoice; extern short menuChoiceId;