summaryrefslogtreecommitdiff
path: root/src/game/g_spawn.c
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2004-01-25 04:52:23 +0000
committerTim Angus <tim@ngus.net>2004-01-25 04:52:23 +0000
commit4bb84115f10466cf6aa9295830f37ff20238dd6c (patch)
tree846ef6822fcf1462ae139f4ee502c917193670a3 /src/game/g_spawn.c
parent7dcfcac2a6de7e2976990b8620f660ad7af959a9 (diff)
* Fixed two serious particle system bugs
* Created a general buildable think function * Fixed the post armoury weapon selection for real * Balance tweaks * A pile of other crap
Diffstat (limited to 'src/game/g_spawn.c')
-rw-r--r--src/game/g_spawn.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/game/g_spawn.c b/src/game/g_spawn.c
index 00d618c3..71ecaed8 100644
--- a/src/game/g_spawn.c
+++ b/src/game/g_spawn.c
@@ -605,10 +605,10 @@ void SP_worldspawn( void )
G_SpawnString( "humanMaxStage", "2", &s );
trap_Cvar_Set( "g_humanMaxStage", s );
- G_SpawnString( "humanStage2Threshold", "50", &s );
+ G_SpawnString( "humanStage2Threshold", "15", &s );
trap_Cvar_Set( "g_humanStage2Threshold", s );
- G_SpawnString( "humanStage3Threshold", "100", &s );
+ G_SpawnString( "humanStage3Threshold", "30", &s );
trap_Cvar_Set( "g_humanStage3Threshold", s );
G_SpawnString( "alienBuildPoints", "1000", &s );
@@ -617,10 +617,10 @@ void SP_worldspawn( void )
G_SpawnString( "alienMaxStage", "2", &s );
trap_Cvar_Set( "g_alienMaxStage", s );
- G_SpawnString( "alienStage2Threshold", "50", &s );
+ G_SpawnString( "alienStage2Threshold", "15", &s );
trap_Cvar_Set( "g_alienStage2Threshold", s );
- G_SpawnString( "alienStage3Threshold", "100", &s );
+ G_SpawnString( "alienStage3Threshold", "30", &s );
trap_Cvar_Set( "g_alienStage3Threshold", s );
G_SpawnString( "enableDust", "0", &s );