diff options
Diffstat (limited to 'src/game/g_main.c')
-rw-r--r-- | src/game/g_main.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c index 7c19403..85fc0a0 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -251,6 +251,7 @@ vmCvar_t g_tyrantNerf; vmCvar_t g_covidInfectionFactor; vmCvar_t g_covidSeverityFactor; vmCvar_t g_covidDebug; +vmCvar_t g_coronaShitpostDelta; static cvarTable_t gameCvarTable[ ] = { @@ -482,6 +483,7 @@ static cvarTable_t gameCvarTable[ ] = { &g_covidInfectionFactor, "g_covidInfectionFactor", "1", CVAR_ARCHIVE, 0, qtrue }, { &g_covidSeverityFactor, "g_covidSeverityFactor", "1", CVAR_ARCHIVE, 0, qtrue }, { &g_covidDebug, "g_covidDebug", "0", CVAR_ARCHIVE, 0, qtrue }, + { &g_coronaShitpostDelta, "g_coronaShitpostDelta", "0", CVAR_ARCHIVE, 0, qfalse }, }; static int gameCvarTableSize = sizeof( gameCvarTable ) / sizeof( gameCvarTable[ 0 ] ); @@ -3044,5 +3046,6 @@ void G_RunFrame( int levelTime ) } G_CoronaNewsfeed( ); + G_CoronaWarnings( ); } |