X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=sv_user.c;h=fcfc4de2326cfc07a4db38b9c4782f5a973e57cc;hp=eec2987043ffb7c9ff1f95bd3d6410b3c6c5d0a9;hb=9edb82a5ebb4cbf2645fa154815df3baa3e59535;hpb=756dc9eb6b0a36c9dcb08cf588cf3b4f7aa14a25 diff --git a/sv_user.c b/sv_user.c index eec29870..fcfc4de2 100644 --- a/sv_user.c +++ b/sv_user.c @@ -628,8 +628,9 @@ void SV_ExecuteClientMoves(void) // count the move as LOST if we don't // execute it but it has higher // sequence count - if(move->sequence > host_client->movesequence) - host_client->movement_count[(move->sequence) % NETGRAPH_PACKETS] = -1; + if(host_client->movesequence) + if(move->sequence > host_client->movesequence) + host_client->movement_count[(move->sequence) % NETGRAPH_PACKETS] = -1; continue; } @@ -876,7 +877,7 @@ void SV_ReadClientMessage(void) clc_stringcmd_invalid: Con_Printf("Received invalid stringcmd from %s\n", host_client->name); - if(developer.integer) + if(developer.integer > 0) Com_HexDumpToConsole((unsigned char *) s, strlen(s)); break;