From bba4061a6336d92f2862016326c78f3cea9c982e Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 26 Feb 2006 03:15:05 +0000 Subject: [PATCH] fix the timeout problem with cl_movement 1 mode on QW servers, but the prediction still needs work to make use of movevars git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6034 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 e6d05362..e153ba80 100644 --- a/cl_input.c +++ b/cl_input.c @@ -896,7 +896,7 @@ void CL_SendMove(void) accumtotal++; #endif - if (cl_movement.integer && cls.signon == SIGNONS) + if (cl_movement.integer && cls.signon == SIGNONS && cls.protocol != PROTOCOL_QUAKEWORLD) { if (!cl.movement_needupdate) return; -- 2.39.2