From: havoc Date: Tue, 21 Sep 2004 09:18:30 +0000 (+0000) Subject: this should fix a stupid bug with PROTOCOL_DARKPLACES4 clc_ackentities (client wasn... X-Git-Tag: xonotic-v0.1.0preview~5573 X-Git-Url: https://de.git.xonotic.org/?a=commitdiff_plain;ds=sidebyside;h=3b91d0d83c47e66cdddae07dfad34c17b60f97c2;p=xonotic%2Fdarkplaces.git this should fix a stupid bug with PROTOCOL_DARKPLACES4 clc_ackentities (client wasn't using the right framenum variable) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4533 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_input.c b/cl_input.c index f8593c2e..aba9852b 100644 --- a/cl_input.c +++ b/cl_input.c @@ -441,7 +441,7 @@ void CL_SendMove(usercmd_t *cmd) { if (cl.entitydatabase4) { - i = cl.entitydatabase4->ackframenum; + i = cl.latestframenum; if (cl_nodelta.integer) i = -1; if (developer_networkentities.integer >= 1)