]> git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - progs.h
edict: Move free and freetime into prvm_edict_t itself
[xonotic/darkplaces.git] / progs.h
diff --git a/progs.h b/progs.h
index fd8d109c3ee65fa1ddebba405e2c21e445f66264..0756c35b88b428ba26fc870323ad80c2df72cb85 100644 (file)
--- a/progs.h
+++ b/progs.h
@@ -67,15 +67,11 @@ typedef struct edict_odefunc_s
 
 typedef struct edict_engineprivate_s
 {
-       // true if this edict is unused
-       qbool free;
-       // sv.time when the object was freed (to prevent early reuse which could
-       // mess up client interpolation or obscure severe QuakeC bugs)
-       double freetime;
        // mark for the leak detector
        int mark;
        // place in the code where it was allocated (for the leak detector)
        const char *allocation_origin;
+
        // initially false to prevent projectiles from moving on their first frame
        // (even if they were spawned by an synchronous client think)
        qbool move;