]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
reenabled the quake 'fall out of level' bug, to make the scorpion near the start...
authorhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 14 Aug 2006 05:14:24 +0000 (05:14 +0000)
committerhavoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Mon, 14 Aug 2006 05:14:24 +0000 (05:14 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@6549 d7cf8633-e32d-0410-b094-e92efae38249

sv_phys.c

index 00e046b30bedd61e5069fdc2bc3c6f7409f29903..36859f3f744ec07075958433e5743c51f1585a08 100644 (file)
--- a/sv_phys.c
+++ b/sv_phys.c
@@ -374,6 +374,7 @@ int SV_FlyMove (prvm_edict_t *ent, float time, float *stepnormal)
                Con_Print("\n");
 #endif
 
+#if 0
                if (trace.bmodelstartsolid)
                {
                        // LordHavoc: note: this code is what makes entities stick in place
@@ -383,6 +384,7 @@ int SV_FlyMove (prvm_edict_t *ent, float time, float *stepnormal)
                        VectorClear(ent->fields.server->velocity);
                        return 3;
                }
+#endif
 
                // break if it moved the entire distance
                if (trace.fraction == 1)