From: havoc Date: Mon, 5 Aug 2002 23:23:53 +0000 (+0000) Subject: spawned entities were often not appearing in quake protocol (demos), oops X-Git-Tag: RELEASE_0_2_0_RC1~364 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=9ee982c9a40c93145e43ea7e359f22b8e8dbe803;p=xonotic%2Fdarkplaces.git spawned entities were often not appearing in quake protocol (demos), oops git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@2208 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_parse.c b/cl_parse.c index 722e0a8b..21baf08f 100644 --- a/cl_parse.c +++ b/cl_parse.c @@ -550,7 +550,10 @@ void CL_ParseUpdate (int bits) if (bits & U_DELTA) new = ent->state_current; else + { new = ent->state_baseline; + new.active = true; + } new.number = num; new.time = cl.mtime[0];