From f7a4ba355696c61033af3da80fbba6ef72e4900b Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Thu, 3 Jan 2002 02:00:47 +0000 Subject: Fix ROLL bug when spawning from ceiling egg --- src/game/g_client.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src') diff --git a/src/game/g_client.c b/src/game/g_client.c index 614c28d8..a61fb653 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -433,6 +433,8 @@ gentity_t *SelectTremulousSpawnPoint( int team, vec3_t origin, vec3_t angles ) VectorCopy( spot->s.pos.trBase, origin ); VectorCopy( spot->s.angles, angles ); + angles[ ROLL ] = 0; + if( team == PTE_ALIENS ) { BG_FindBBoxForBuildable( BA_A_SPAWN, spawnMins, spawnMaxs ); -- cgit