From 7f86cdbda6a20646da2cd067529aa8233b6c00d9 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 29 May 2005 22:47:06 +0000 Subject: [PATCH] disabled cl_movement when in intermission git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5352 d7cf8633-e32d-0410-b094-e92efae38249 --- cl_input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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++) -- 2.39.2