1
0
Fork 0
forked from fte/fteqw

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4265 fc73d0e0-1445-4013-8a0c-d673dee63da5

This commit is contained in:
Spoike 2013-03-17 22:55:38 +00:00
parent 5c67517cb5
commit 68ab5b3292

View file

@ -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)
{