From 05ff7e328c1324763deb00f787ac8f8ca4b9bd84 Mon Sep 17 00:00:00 2001 From: Nat Quayle Nelson Date: Tue, 19 Aug 2025 08:24:24 -0500 Subject: [PATCH] make tutorial feature flag debug-only for now --- src/game/boe.main.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/game/boe.main.cpp b/src/game/boe.main.cpp index 80e14c109..255b004a5 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -131,9 +131,11 @@ std::map> feature_flags = { {"store-spell-caster", {"fixed"}}, // Game balance {"magic-resistance", {"fixed"}}, // Resist Magic used to not help with magic damage! - {"door-town-difficulty", {"fixed"}}, + {"door-town-difficulty", {"fixed"}} // Tutorial - {"tutorial", {"V1"}} + #ifdef DEBUG + ,{"tutorial", {"V1"}} + #endif }; struct cParseEntrance {