it seems that map changes generate from mismatches, so change that

back to a silent warning (but also make it drop the packet)
This commit is contained in:
Adam Olsen 2001-10-30 09:15:09 +00:00
parent 61f819b5c9
commit c0f363e05c

View file

@ -260,7 +260,9 @@ CL_ParseDeltaPacketEntities ()
return;
}
if ((block.from & UPDATE_MASK) != (oldpacket & UPDATE_MASK)) {
Host_NetError ("CL_ParseDeltaPacketEntities: from mismatch\n");
Con_DPrintf ("CL_ParseDeltaPacketEntities: from mismatch\n");
cl.validsequence = 0;
cl.frames[newpacket].invalid = true;
return;
}
if (oldpacket == -1) {