- cl_blockcheats added to 'nocheat' check

This commit is contained in:
Rachael Alexanderson 2019-11-13 04:45:57 -05:00
parent 88848f1d59
commit 26dd900b3e
1 changed files with 2 additions and 1 deletions

View File

@ -39,6 +39,7 @@
EXTERN_CVAR (Bool, ticker);
EXTERN_CVAR (Bool, noisedebug);
EXTERN_CVAR (Int, am_cheat);
EXTERN_CVAR (Int, cl_blockcheats);
struct cheatseq_t
{
@ -308,7 +309,7 @@ bool ST_Responder (event_t *ev)
{
bool eat = false;
if (nocheats)
if (nocheats || !!cl_blockcheats)
{
return false;
}