summaryrefslogtreecommitdiff
path: root/src/game/g_local.h
diff options
context:
space:
mode:
authormtiusane <mtiusane@users.noreply.github.com>2014-10-18 21:00:33 +0300
committermtiusane <mtiusane@users.noreply.github.com>2014-10-18 21:00:33 +0300
commitd427c2d880786507e57ad943be39c559421d3190 (patch)
tree63850e0431c9336b7e4ea98eb90a23f4f3c8e924 /src/game/g_local.h
parente7cd2f975492875faa2f26b3b13b8015d53a94d4 (diff)
parentc8e426354b1b42a6870e7e44c8e92a7fc0531ede (diff)
Merge pull request #12 from ppetr/wsd
Weak sudden death
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r--src/game/g_local.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h
index 522bdb7..4e6cec1 100644
--- a/src/game/g_local.h
+++ b/src/game/g_local.h
@@ -666,6 +666,8 @@ typedef struct
team_t lastWin;
+ int weakSuddenDeathBeginTime;
+ timeWarning_t weakSuddenDeathWarning;
int suddenDeathBeginTime;
timeWarning_t suddenDeathWarning;
timeWarning_t timelimitWarning;
@@ -812,6 +814,9 @@ typedef enum
IBE_LASTSPAWN,
IBE_BLOCKEDBYENEMY,
IBE_GTHRBLOCKED,
+ IBE_WSD_INBASE,
+ IBE_WSD_REFSCOLS,
+
IBE_MAXERRORS
} itemBuildError_t;
@@ -1159,6 +1164,7 @@ extern vmCvar_t g_minNameChangePeriod;
extern vmCvar_t g_maxNameChanges;
extern vmCvar_t g_timelimit;
extern vmCvar_t g_suddenDeathTime;
+extern vmCvar_t g_weakSuddenDeathTime;
extern vmCvar_t g_armageddonTimeStep;
extern vmCvar_t g_armageddonInitialTimeStep;
extern vmCvar_t g_armageddonDefensiveKillPercent;