X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=sv_user.c;h=fcfc4de2326cfc07a4db38b9c4782f5a973e57cc;hb=7ac7e86b81c449961393d5226f5aa04aac5d31d5;hp=294199ef035eae4f061f6536a989c24b6e7575d2;hpb=c9224df6b5391897c23a5f1ca33714b9390e8c87;p=xonotic%2Fdarkplaces.git diff --git a/sv_user.c b/sv_user.c index 294199ef..fcfc4de2 100644 --- a/sv_user.c +++ b/sv_user.c @@ -531,9 +531,6 @@ void SV_ReadClientMove (void) if (msg_badread) Con_Printf("SV_ReadClientMessage: badread at %s:%i\n", __FILE__, __LINE__); } - if(move->impulse) - Con_Printf("MOVEMENT DEBUGGING: received impulse %d\n", move->impulse); - // if the previous move has not been applied yet, we need to accumulate // the impulse/buttons from it if (!host_client->cmd.applied) @@ -632,11 +629,8 @@ void SV_ExecuteClientMoves(void) // execute it but it has higher // sequence count if(host_client->movesequence) - { if(move->sequence > host_client->movesequence) host_client->movement_count[(move->sequence) % NETGRAPH_PACKETS] = -1; - Con_Printf("MOVEMENT DEBUGGING: invalid packet timing (less than 0.5ms), discarded packet\n"); - } continue; } @@ -659,10 +653,6 @@ void SV_ExecuteClientMoves(void) // the server and qc frametime values must be changed temporarily prog->globals.server->frametime = sv.frametime = moveframetime; // if move is more than 50ms, split it into two moves (this matches QWSV behavior and the client prediction) - - if(host_client->cmd.impulse) - Con_Printf("MOVEMENT DEBUGGING: applying impulse %d\n", host_client->cmd.impulse); - if (sv.frametime > 0.05) { prog->globals.server->frametime = sv.frametime = moveframetime * 0.5f; @@ -887,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;