]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - chase.c
bmodel rotation physics now work
[xonotic/darkplaces.git] / chase.c
diff --git a/chase.c b/chase.c
index f42e76264253912dc281ab6114f32767c59bf45c..8a46d76feb91f15419bc55dc530d71eca2f261da 100644 (file)
--- a/chase.c
+++ b/chase.c
@@ -38,15 +38,13 @@ void Chase_Reset (void)
 //     start position 12 units behind head
 }
 
-extern qboolean SV_RecursiveHullCheck (hull_t *hull, int num, float p1f, float p2f, vec3_t p1, vec3_t p2, trace_t *trace);
-
 void TraceLine (vec3_t start, vec3_t end, vec3_t impact)
 {
        trace_t trace;
 
        memset (&trace, 0, sizeof(trace));
+       VectorCopy (end, trace.endpos); // fix TraceLine endpoint bug
        SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
-
        VectorCopy (trace.endpos, impact);
 }