From: havoc Date: Thu, 7 Aug 2003 10:38:26 +0000 (+0000) Subject: sigh, one more thing I forgot to commit :( X-Git-Tag: xonotic-v0.1.0preview~6457 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=db956cba28e223bf5cbb8359d5ddbf1d2412a3b4;p=xonotic%2Fdarkplaces.git sigh, one more thing I forgot to commit :( git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@3369 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_input.c b/cl_input.c index 6463fed5..680632c7 100644 --- a/cl_input.c +++ b/cl_input.c @@ -366,7 +366,7 @@ void CL_SendMove(usercmd_t *cmd) upmove += cmd->upmove; total++; // LordHavoc: cap outgoing movement messages to sys_ticrate - if ((cl.maxclients > 1) && (realtime - lastmovetime < sys_ticrate.value)) + if (!cl.islocalgame && (realtime - lastmovetime < sys_ticrate.value)) return; lastmovetime = realtime; // average what has happened during this time