git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8915
d7cf8633-e32d-0410-b094-
e92efae38249
// the previous one to prevent hacks using float inaccuracy
// clients will see this as packet loss in the netgraph
if(sv_clmovement_maxnetfps.value > 0)
- if(moveframetime < 1 / sv_clmovement_maxnetfps.value)
+ if(moveframetime + 0.0001 < 1 / sv_clmovement_maxnetfps.value)
continue;
//Con_Printf("movesequence = %i (%i lost), moveframetime = %f\n", move->sequence, move->sequence ? move->sequence - host_client->movesequence - 1 : 0, moveframetime);