From aba8353eb00f9fbb4f921d8d970f62c76c9733e6 Mon Sep 17 00:00:00 2001 From: Paweł Redman Date: Wed, 1 Apr 2020 12:39:45 +0200 Subject: Corona CPs and fixups --- src/game/g_main.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/game/g_main.c') 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( ); } -- cgit