diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index 2aa941913..54dcc52ae 100644 --- a/src/c_cmds.cpp +++ b/src/c_cmds.cpp @@ -74,6 +74,7 @@ extern bool insave; CVAR (Bool, sv_cheats, false, CVAR_SERVERINFO | CVAR_LATCH) CVAR (Bool, sv_unlimited_pickup, false, CVAR_SERVERINFO) +CVAR (Bool, cl_blockcheats, false, 0) CCMD (toggleconsole) { @@ -87,6 +88,11 @@ bool CheckCheatmode (bool printmsg) if (printmsg) Printf ("sv_cheats must be true to enable this command.\n"); return true; } + else if (cl_blockcheats) + { + if (printmsg) Printf ("cl_blockcheats is turned on and disabled this command.\n"); + return true; + } else { return false;