yeah turns out the changed code was infront of me all this time
HEAD master1 files changed, 1 insertions, 1 deletions
diff --git a/src/EntityComponents.c b/src/EntityComponents.c
index 9652a71..27a0b70 100644
--- a/src/EntityComponents.c
+++ b/src/EntityComponents.c
@@ -225,7 +225,7 @@ static void HacksComp_ParseAllFlag(struct HacksComp* hacks, const char* include,
void HacksComp_RecheckFlags(struct HacksComp* hacks) {
/* Can use hacks by default (also case with WoM), no need to check +hax */
- cc_bool hax = true;
+ cc_bool hax = !String_ContainsConst(&hacks->HacksFlags, "-hax") || Options_GetBool(OPT_HACKS_OVERRIDE, true); // WL - reverted //
HacksComp_SetAll(hacks, hax);
hacks->CanBePushed = true;
|