summaryrefslogtreecommitdiff
path: root/src/game/g_main.c
diff options
context:
space:
mode:
authorPaweł Redman <pawel.redman@gmail.com>2020-03-29 20:59:17 +0200
committerPaweł Redman <pawel.redman@gmail.com>2020-03-29 21:57:23 +0200
commit04fa335c32eca9a86bcc4912351bb5190665420d (patch)
treeb9899e4bc636265586a222e26808c83d96a610e9 /src/game/g_main.c
parentd9e9bb2d95483cbf2ca5d6cf5ac7b9f490d40204 (diff)
Getting this ready for testing
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 ] );