From 92dfebfc6424b2cb634ee15fef0029f7974b1e2b Mon Sep 17 00:00:00 2001 From: kai Date: Thu, 2 Apr 2020 16:11:15 +0100 Subject: G_admin_isconsoleaschacht --- src/game/g_main.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/game/g_main.c') diff --git a/src/game/g_main.c b/src/game/g_main.c index c6b9344..af69a6d 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -248,6 +248,8 @@ vmCvar_t g_specNoclip; vmCvar_t g_practise; vmCvar_t g_tyrantNerf; +vmCvar_t g_consoleIsASchacht; + static cvarTable_t gameCvarTable[ ] = { // don't override the cheat state set by the system @@ -474,6 +476,8 @@ static cvarTable_t gameCvarTable[ ] = { &g_specNoclip, "g_specNoclip", "0", CVAR_ARCHIVE, 0, qtrue }, { &g_practise, "g_practise", "0", CVAR_ARCHIVE, 0, qfalse }, { &g_tyrantNerf, "g_tyrantNerf", "0", CVAR_ARCHIVE, 0, qfalse }, + + { &g_consoleIsASchacht, "g_consoleIsASchacht", "0", CVAR_ARCHIVE, 0, qfalse }, }; static int gameCvarTableSize = sizeof( gameCvarTable ) / sizeof( gameCvarTable[ 0 ] ); -- cgit