mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-16 01:21:17 +00:00
- cl_blockcheats added to 'nocheat' check
This commit is contained in:
parent
4878da381b
commit
3c030527af
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue