Don't crash when clients disconnect, kthx.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3373 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
b773f51349
commit
02fd259fab
1 changed files with 1 additions and 1 deletions
|
@ -2047,7 +2047,7 @@ void SV_SendClientMessages (void)
|
|||
// build individual updates
|
||||
for (i=0, c = svs.clients ; i<MAX_CLIENTS ; i++, c++)
|
||||
{
|
||||
if (!c->state)
|
||||
if (c->state <= cs_zombie)
|
||||
continue;
|
||||
|
||||
if (c->drop)
|
||||
|
|
Loading…
Reference in a new issue