]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - sv_phys.c
fixed fiends teleporting when they check if a jump is a good one or not
[xonotic/darkplaces.git] / sv_phys.c
index 0e465d1e26820ea002dc793f9c7bc5fe08beaca3..2bb5b43987808ac765dfe3ce956d145a4826e651 100644 (file)
--- a/sv_phys.c
+++ b/sv_phys.c
@@ -1433,11 +1433,16 @@ trace_t SV_Trace_Toss (edict_t *tossent, edict_t *ignore)
        float gravity, savesolid;
        vec3_t move, end;
        edict_t tempent, *tent;
+       entvars_t vars;
        eval_t *val;
        trace_t trace;
 
-       memcpy(&tempent, tossent, sizeof(edict_t));
+       // copy the vars over
+       memcpy(&vars, tossent->v, sizeof(entvars_t));
+       // set up the temp entity to point to the copied vars
        tent = &tempent;
+       tent->v = &vars;
+
        savesolid = tossent->v->solid;
        tossent->v->solid = SOLID_NOT;