From 07d3e4b4e8caf70aadc7eb3a5135169bf070d3c9 Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Tue, 19 Aug 2003 18:02:59 +0000 Subject: * Fixed spawn kick for aliens * Creep grows in accordance to buildTime * Construction animation doesn't start until the end of buildTime --- src/game/g_client.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/game') diff --git a/src/game/g_client.c b/src/game/g_client.c index 0d40f38c..5b582458 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1459,7 +1459,7 @@ void ClientSpawn( gentity_t *ent, gentity_t *spawn, vec3_t origin, vec3_t angles if( client->sess.sessionTeam != TEAM_SPECTATOR && client->ps.stats[ STAT_PTEAM ] == PTE_ALIENS ) { - if( !spawn && spawnPoint->s.origin2[ 2 ] > 0.0f ) + if( ent != spawn && spawnPoint->s.origin2[ 2 ] > 0.0f ) { vec3_t forward, dir; -- cgit