make tutorial feature flag debug-only for now

This commit is contained in:
2025-08-19 08:24:24 -05:00
parent b3b4724e1b
commit 05ff7e328c

View File

@@ -131,9 +131,11 @@ std::map<std::string,std::vector<std::string>> 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 {