mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-18 15:01:41 +00:00
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:
parent
61f819b5c9
commit
c0f363e05c
1 changed files with 3 additions and 1 deletions
|
@ -260,7 +260,9 @@ CL_ParseDeltaPacketEntities ()
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if ((block.from & UPDATE_MASK) != (oldpacket & UPDATE_MASK)) {
|
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;
|
return;
|
||||||
}
|
}
|
||||||
if (oldpacket == -1) {
|
if (oldpacket == -1) {
|
||||||
|
|
Loading…
Reference in a new issue