From a87b280c7937e83328fda530d421041b0ef36112 Mon Sep 17 00:00:00 2001 From: havoc Date: Sun, 27 Sep 2009 18:09:38 +0000 Subject: [PATCH] change cl.time check back git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9248 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 8132d5c8..311edf0b 100644 --- a/cl_input.c +++ b/cl_input.c @@ -1698,7 +1698,7 @@ void CL_SendMove(void) } // do not send 0ms packets because they mess up physics - if(cl.cmd.msec == 0 && cl.cmd.time > cl.movecmd[1].time && (cls.protocol == PROTOCOL_QUAKEWORLD || cls.signon == SIGNONS)) + if(cl.cmd.msec == 0 && cl.time > cl.oldtime && (cls.protocol == PROTOCOL_QUAKEWORLD || cls.signon == SIGNONS)) return; // always send if buttons changed or an impulse is pending // even if it violates the rate limit! -- 2.39.2