From: havoc Date: Thu, 24 Jul 2008 01:37:38 +0000 (+0000) Subject: don't warn about CSQC_Ent_Remove on an already-removed entity (it could X-Git-Tag: xonotic-v0.1.0preview~2155 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=00f0d559597a4ad10941a1061e2ba9aec6fff7a7;p=xonotic%2Fdarkplaces.git don't warn about CSQC_Ent_Remove on an already-removed entity (it could be a repeated update) git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8426 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/csprogs.c b/csprogs.c index dfffdb0e..69b9734c 100644 --- a/csprogs.c +++ b/csprogs.c @@ -563,7 +563,13 @@ void CSQC_ReadEntities (void) cl.csqc_server2csqcentitynumber[realentnum] = 0; } else - Con_Printf("Bad csqc_server2csqcentitynumber map\n"); //[515]: never happens ? + { + // LordHavoc: removing an entity that is already gone on + // the csqc side is possible for legitimate reasons (such + // as a repeat of the remove message), so no warning is + // needed + //Con_Printf("Bad csqc_server2csqcentitynumber map\n"); //[515]: never happens ? + } } else {