From: havoc Date: Thu, 23 Feb 2006 05:26:53 +0000 (+0000) Subject: add the priv.server->move field needed by a previous commit X-Git-Tag: xonotic-v0.1.0preview~4304 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=1ccaa966363bef248cdaba8376ff518ae4c53eef;p=xonotic%2Fdarkplaces.git add the priv.server->move field needed by a previous commit git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6009 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/progs.h b/progs.h index 6aeb4f15..63f40578 100644 --- a/progs.h +++ b/progs.h @@ -38,6 +38,9 @@ typedef struct edict_engineprivate_s // sv.time when the object was freed (to prevent early reuse which could // mess up client interpolation or obscure severe QuakeC bugs) float freetime; + // initially false to prevent projectiles from moving on their first frame + // (even if they were spawned by an synchronous client think) + qboolean move; // cached cluster links for quick stationary object visibility checking vec3_t cullmins, cullmaxs;