From 42ab7dd70f911be6fc4f129737b3758b2d36a0b1 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson <18584402+madame-rachelle@users.noreply.github.com> Date: Sun, 10 Dec 2023 11:47:10 -0500 Subject: [PATCH] - mark gl_maplightmode as a cheat I've heard from several people since this was put in that this should be marked as a cheat. This PR lets you make the final call on that. --- src/g_level.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/g_level.cpp b/src/g_level.cpp index ba54de8cc..4909303a5 100644 --- a/src/g_level.cpp +++ b/src/g_level.cpp @@ -146,7 +146,7 @@ CUSTOM_CVAR(Bool, gl_notexturefill, false, CVAR_NOINITCALL) } } -CUSTOM_CVAR(Int, gl_maplightmode, -1, CVAR_NOINITCALL) // this is just for testing. -1 means 'inactive' +CUSTOM_CVAR(Int, gl_maplightmode, -1, CVAR_NOINITCALL | CVAR_CHEAT) // this is just for testing. -1 means 'inactive' { if (self > 5 || self < -1) self = -1; }