git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4265 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
5c67517cb5
commit
68ab5b3292
1 changed files with 6 additions and 0 deletions
|
@ -434,6 +434,12 @@ void SV_CSQC_DroppedPacket(client_t *client, int sequence)
|
|||
{
|
||||
int i;
|
||||
int m;
|
||||
if (!client->frameunion.frames)
|
||||
{
|
||||
Con_Printf("BLAME %s\n", client->state?client->name:"a zombie");
|
||||
return;
|
||||
}
|
||||
|
||||
//skip it if we never generated that frame, to avoid pulling in stale data
|
||||
if (client->frameunion.frames[sequence & UPDATE_MASK].sequence != sequence)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue