]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - chase.c
Various graphical tweaks (mainly particle related), some code removed.
[xonotic/darkplaces.git] / chase.c
diff --git a/chase.c b/chase.c
index 4249881b8aaa72bf553f196898efce0e6771d234..f89a5d66f7bdfd9c0ff30a68819a5ef34fb21628 100644 (file)
--- a/chase.c
+++ b/chase.c
@@ -42,12 +42,15 @@ qboolean SV_RecursiveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec
 
 void TraceLine (vec3_t start, vec3_t end, vec3_t impact)
 {
+       /*
        trace_t trace;
 
        memset (&trace, 0, sizeof(trace));
        SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
 
        VectorCopy (trace.endpos, impact);
+       */
+       VectorCopy (end, impact);
 }
 
 void Chase_Update (void)