summaryrefslogtreecommitdiff
path: root/src/game/g_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/g_main.c')
-rw-r--r--src/game/g_main.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/game/g_main.c b/src/game/g_main.c
index 9bf9b38..410926a 100644
--- a/src/game/g_main.c
+++ b/src/game/g_main.c
@@ -246,6 +246,10 @@ vmCvar_t g_adminAutobahnNotify;
vmCvar_t g_maxGhosts;
vmCvar_t g_specNoclip;
vmCvar_t g_practise;
+vmCvar_t g_tyrantNerf;
+
+vmCvar_t g_covidInfectionFactor;
+vmCvar_t g_covidSeverityFactor;
static cvarTable_t gameCvarTable[ ] =
{
@@ -471,7 +475,11 @@ static cvarTable_t gameCvarTable[ ] =
{ &g_adminAutobahnNotify, "g_adminAutobahnNotify", "1", CVAR_ARCHIVE, 0, qfalse },
{ &g_maxGhosts, "g_maxGhosts", "0", CVAR_ARCHIVE, 0, qfalse },
{ &g_specNoclip, "g_specNoclip", "0", CVAR_ARCHIVE, 0, qtrue },
- { &g_practise, "g_practise", "0", CVAR_ARCHIVE, 0, qfalse }
+ { &g_practise, "g_practise", "0", CVAR_ARCHIVE, 0, qfalse },
+ { &g_tyrantNerf, "g_tyrantNerf", "0", CVAR_ARCHIVE, 0, qfalse },
+
+ { &g_covidInfectionFactor, "g_covidInfectionFactor", "1", CVAR_ARCHIVE, 0, qtrue },
+ { &g_covidSeverityFactor, "g_covidSeverityFactor", "1", CVAR_ARCHIVE, 0, qtrue },
};
static int gameCvarTableSize = sizeof( gameCvarTable ) / sizeof( gameCvarTable[ 0 ] );