summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
authorBen Millwood <thebenmachine@gmail.com>2009-10-03 12:19:21 +0000
committerTim Angus <tim@ngus.net>2013-01-03 00:15:51 +0000
commitc1d729dfbc605c4fa514bce9e1663961ff7ede51 (patch)
treea58cc6ded714ecf89239f23b2a4a71932a4ca683 /src/cgame
parent931e88a788c5214bcbb24827bd5574c97abe99cb (diff)
BP Queuing system
* Remove humanBuildPointsPowered as it isn't used nor is it likely to be * Ensure that alien buildables no longer count for BP after they exploded * Don't restore the BP for a destroyed building as soon as it is destroyed - instead, add them to a global queue and restore them slowly, as determined by g_<team>BuildQueueTime * Remove G_IsOvermindBuilt in favour of level.overmindPresent which did pretty much the same thing This resolves issue #6
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_servercmds.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/src/cgame/cg_servercmds.c b/src/cgame/cg_servercmds.c
index ebfeb2de..b9c310eb 100644
--- a/src/cgame/cg_servercmds.c
+++ b/src/cgame/cg_servercmds.c
@@ -161,11 +161,10 @@ Called on load to set the initial values from configure strings
void CG_SetConfigValues( void )
{
sscanf( CG_ConfigString( CS_BUILDPOINTS ),
- "%d %d %d %d %d", &cgs.alienBuildPoints,
+ "%d %d %d %d", &cgs.alienBuildPoints,
&cgs.alienBuildPointsTotal,
&cgs.humanBuildPoints,
- &cgs.humanBuildPointsTotal,
- &cgs.humanBuildPointsPowered );
+ &cgs.humanBuildPointsTotal );
sscanf( CG_ConfigString( CS_STAGES ), "%d %d %d %d %d %d", &cgs.alienStage, &cgs.humanStage,
&cgs.alienCredits, &cgs.humanCredits, &cgs.alienNextStageThreshold, &cgs.humanNextStageThreshold );
@@ -281,11 +280,10 @@ static void CG_ConfigStringModified( void )
else if( num == CS_WARMUP )
CG_ParseWarmup( );
else if( num == CS_BUILDPOINTS )
- sscanf( str, "%d %d %d %d %d", &cgs.alienBuildPoints,
+ sscanf( str, "%d %d %d %d", &cgs.alienBuildPoints,
&cgs.alienBuildPointsTotal,
&cgs.humanBuildPoints,
- &cgs.humanBuildPointsTotal,
- &cgs.humanBuildPointsPowered );
+ &cgs.humanBuildPointsTotal );
else if( num == CS_STAGES )
{
stage_t oldAlienStage = cgs.alienStage;