From 1771685b85c01f57c4f6b758ca7c8bf964b10b1d Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Sun, 4 May 2025 12:16:57 -0500 Subject: [PATCH] Tutorial coming soon message --- src/game/boe.actions.cpp | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/game/boe.actions.cpp b/src/game/boe.actions.cpp index 3e59f31d..3943beca 100644 --- a/src/game/boe.actions.cpp +++ b/src/game/boe.actions.cpp @@ -3666,9 +3666,12 @@ void start_new_game(bool force) { } void start_tutorial() { - // Start by using the default party - start_new_game(true); - // TODO start the tutorial scenario, which we need to design. + std::string version_flag = get_feature_version("tutorial"); + if(!version_flag.empty()){ + // TODO implement the tutorial. If the behavior for launching the tutorial ever changes, update feature flags. + }else{ + showWarning("Tutorial coming soon!"); + } } location get_cur_direction() {