From aecc63058c200da4bf25bdd6f27603ba7949954f Mon Sep 17 00:00:00 2001 From: Roman Tetelman Date: Sat, 3 Oct 2009 12:13:58 +0000 Subject: * fix to players spawning in 3rd person and hopefully spawn queue blocking --- src/game/g_main.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src/game') diff --git a/src/game/g_main.c b/src/game/g_main.c index 08188beb..061cf652 100644 --- a/src/game/g_main.c +++ b/src/game/g_main.c @@ -803,6 +803,7 @@ int G_PopSpawnQueue( spawnQueue_t *sq ) { sq->clients[ sq->front ] = -1; sq->front = QUEUE_PLUS1( sq->front ); + G_StopFollowing( g_entities + clientNum ); g_entities[ clientNum ].client->ps.pm_flags &= ~PMF_QUEUED; return clientNum; -- cgit