From 598f40f88085602f5545be15df6eb51da8aa3afd Mon Sep 17 00:00:00 2001 From: Blue Shadow Date: Mon, 11 Nov 2024 14:25:20 +0300 Subject: [PATCH] added constants for the most recently added level flags --- wadsrc/static/zscript/constants.zs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wadsrc/static/zscript/constants.zs b/wadsrc/static/zscript/constants.zs index ae57f7a4de9..b39573bd991 100644 --- a/wadsrc/static/zscript/constants.zs +++ b/wadsrc/static/zscript/constants.zs @@ -1409,6 +1409,8 @@ enum ELevelFlags LEVEL3_AVOIDMELEE = 0x00020000, // global flag needed for proper MBF support. LEVEL3_NOJUMPDOWN = 0x00040000, // only for MBF21. Inverse of MBF's dog_jumping flag. LEVEL3_LIGHTCREATED = 0x00080000, // a light had been created in the last frame + LEVEL3_NOFOGOFWAR = 0x00100000, // disables effect of r_radarclipper CVAR on this map + LEVEL3_SECRET = 0x00200000, // level is a secret level }; // [RH] Compatibility flags.