From: divverent Date: Mon, 6 Oct 2008 06:43:35 +0000 (+0000) Subject: resend csqc entities COMPLETELY if they became inactive and later active again X-Git-Tag: xonotic-v0.1.0preview~2064 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8a40b957ddb54ce17179e633ca9d4719424ded59;p=xonotic%2Fdarkplaces.git resend csqc entities COMPLETELY if they became inactive and later active again git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8524 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/protocol.c b/protocol.c index 66b4db3a..3ffdd43e 100644 --- a/protocol.c +++ b/protocol.c @@ -346,7 +346,7 @@ void EntityFrameCSQC_WriteFrame (sizebuf_t *msg, int maxsize, int numstates, con // write the remove message MSG_WriteShort(msg, (unsigned short)number | 0x8000); client->csqcentityscope[number] = 0; - client->csqcentitysendflags[number] = 0; + client->csqcentitysendflags[number] = 0xFFFFFF; // resend completely if it becomes active again if (msg->cursize + 17 >= maxsize) break; }