Ensure id's trace is properly initialized.

This commit is contained in:
Bill Currie 2011-09-27 15:38:28 +09:00
parent 32ff639bf3
commit e23ee07b6f

View file

@ -156,5 +156,7 @@ MOD_TraceLine (hull_t *hull, int num,
const vec3_t start_point, const vec3_t end_point,
trace_t *trace)
{
trace->fraction = 1;
trace->allsolid = true;
SV_RecursiveHullCheck (hull, num, 0, 1, start_point, end_point, trace);
}