From 4f5ad70bead13bb2b77734d9828befa1c1c95bc5 Mon Sep 17 00:00:00 2001 From: Roman Tetelman Date: Sat, 3 Oct 2009 13:03:39 +0000 Subject: * spectating teammates no longer copies their credits, borrowed from lakitu7 (fixes #78) --- src/game/g_client.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/game') diff --git a/src/game/g_client.c b/src/game/g_client.c index ea4aab82..911d9792 100644 --- a/src/game/g_client.c +++ b/src/game/g_client.c @@ -1388,6 +1388,10 @@ void ClientSpawn( gentity_t *ent, gentity_t *spawn, vec3_t origin, vec3_t angles else if( client->pers.classSelection == PCL_NONE ) client->sess.spectatorState = SPECTATOR_LOCKED; + // if client is dead and following teammate, stop following before spawning + if( ent->client->sess.spectatorState == SPECTATOR_FOLLOW ) + G_StopFollowing( ent ); + if( origin != NULL ) VectorCopy( origin, spawn_origin ); -- cgit