From: havoc Date: Sun, 29 May 2005 22:47:06 +0000 (+0000) Subject: disabled cl_movement when in intermission X-Git-Tag: xonotic-v0.1.0preview~4830 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7f86cdbda6a20646da2cd067529aa8233b6c00d9;p=xonotic%2Fdarkplaces.git disabled cl_movement when in intermission git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5352 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_input.c b/cl_input.c index 622b601d..a96b2a46 100644 --- a/cl_input.c +++ b/cl_input.c @@ -568,7 +568,7 @@ void CL_ClientMovement(qboolean buttonjump, qboolean buttoncrouch) // replay input queue, and remove any stale queue items // note: this relies on the fact there's always one queue item at the end // abort if client movement is disabled - cl.movement = cl_movement.integer && cl.stats[STAT_HEALTH] > 0 && !cls.demoplayback; + cl.movement = cl_movement.integer && cl.stats[STAT_HEALTH] > 0 && !cls.demoplayback && !cl.intermission; if (!cl.movement) cl.movement_numqueue = 0; for (i = 0;i < cl.movement_numqueue;i++)