Fixed chasecam (RecursiveHullCheck bug)

This commit is contained in:
cholleme 2003-02-16 20:04:01 +00:00
parent b3c239b585
commit 092112fca7

View file

@ -55,7 +55,7 @@ plane_t *HitPlane (vec3_t start, vec3_t end)
trace.allsolid = true;
VectorCopy (end, trace.endpos);
SV_RecursiveHullCheck (cl.worldmodel->hulls, 0, 0, 1, start, end, &trace);
SV_RecursiveHullCheck (cl.worldmodel, 0, 0, 1, start, end, &trace);
junk = trace.plane;
return &junk;