From 49ff21dc9c098ef705535f6d5bc9f67cdf509879 Mon Sep 17 00:00:00 2001 From: divverent Date: Tue, 15 Sep 2009 05:28:30 +0000 Subject: [PATCH] [04:31:11] <@LordHavoc> div0: 9179 (if (msecdelta <= 0) return;) wrecked connect time [04:31:23] <@LordHavoc> div0: not enough packets coming in for the message exchange to work [04:32:07] <@LordHavoc> div0: maybe if (msecdelta <= 0 && cl.movevars_ticrate > 0 && cls.signon == SIGNONS) [04:32:34] <@LordHavoc> div0: maybe also && !cl.paused git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@9196 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 55688654..e58dad4b 100644 --- a/cl_input.c +++ b/cl_input.c @@ -1681,7 +1681,7 @@ void CL_SendMove(void) packettime = 0; // do not send if we do not have anything useful to send - if(msecdelta <= 0) + if(msecdelta <= 0 && cls.signon == SIGNONS && !cl.paused) return; // always send if buttons changed or an impulse is pending // even if it violates the rate limit! -- 2.39.2