make tutorial feature flag debug-only for now

This commit is contained in:
2025-08-19 08:24:24 -05:00
parent 4a0bd148b5
commit aaec15743d

View File

@@ -130,9 +130,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 {