From aaec15743d5624e88d7130f06b7e053b4244f263 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 3b78d751..1106ae66 100644 --- a/src/game/boe.main.cpp +++ b/src/game/boe.main.cpp @@ -130,9 +130,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 {