Skip to content

Commit

Permalink
- mark gl_maplightmode as a cheat
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
madame-rachelle authored and coelckers committed Dec 10, 2023
1 parent f873946 commit 42ab7dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/g_level.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit 42ab7dd

Please sign in to comment.