From 1407d0a7c50be3b8b13e43683581c201a29ac1f7 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson Date: Thu, 24 Jan 2019 22:09:09 -0500 Subject: [PATCH] - add 'cl_blockcheats' - useful for people who use debugging keys, allows a user to consciously turn off cheats without affecting the server --- src/c_cmds.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/c_cmds.cpp b/src/c_cmds.cpp index 2aa9419138..54dcc52aeb 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;