diff options
author | Tim Angus <tim@ngus.net> | 2006-07-31 17:45:47 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-07-31 17:45:47 +0000 |
commit | c999c50a24348489e5f705aa4b07bdcdf6b0658e (patch) | |
tree | 16ca91faeff53ef4047c39e4ac555e61401cf9c6 /src/game/g_main.c | |
parent | 061c247375c8aac977a3588a1dfb2382634da80e (diff) |
* Phil Bordelon's g_chatTeamPrefix patch
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 e6a64f9c..b0e1bdeb 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -112,6 +112,7 @@ vmCvar_t g_currentMap; vmCvar_t g_initialMapRotation; vmCvar_t g_mapConfigs; +vmCvar_t g_chatTeamPrefix; static cvarTable_t gameCvarTable[ ] = { @@ -202,6 +203,8 @@ static cvarTable_t gameCvarTable[ ] = { &g_disabledClasses, "g_disabledClasses", "", CVAR_ROM, 0, qfalse }, { &g_disabledBuildables, "g_disabledBuildables", "", CVAR_ROM, 0, qfalse }, + { &g_chatTeamPrefix, "g_chatTeamPrefix", "0", CVAR_ARCHIVE }, + { &g_debugMapRotation, "g_debugMapRotation", "0", 0, 0, qfalse }, { &g_currentMapRotation, "g_currentMapRotation", "-1", 0, 0, qfalse }, // -1 = NOT_ROTATING { &g_currentMap, "g_currentMap", "0", 0, 0, qfalse }, |