From: havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Mon, 21 Mar 2011 06:11:48 +0000 (+0000)
Subject: fix some disabled code so that it could compile again
X-Git-Tag: xonotic-v0.5.0~375
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=efb1fcea5e30f50fb46d0b9b28c251e5c9491407;p=xonotic%2Fdarkplaces.git

fix some disabled code so that it could compile again

git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@10953 d7cf8633-e32d-0410-b094-e92efae38249
::stable-branch::merge=0246a8a37d58c76e5124736ff4697b8af1a3cfa8
---

diff --git a/cl_collision.c b/cl_collision.c
index 57b6b4b5..93ba6598 100644
--- a/cl_collision.c
+++ b/cl_collision.c
@@ -735,7 +735,7 @@ trace_t CL_TraceBox(const vec3_t start, const vec3_t mins, const vec3_t maxs, co
 		if (VectorCompare(start, end))
 			trace = CL_TracePoint(shiftstart, type, passedict, hitsupercontentsmask, hitnetworkbrushmodels, hitnetworkplayers, hitnetworkentity, hitcsqcentities);
 		else
-			trace = CL_TraceLine(shiftstart, shiftend, type, passedict, hitsupercontentsmask, hitnetworkbrushmodels, hitnetworkplayers, hitnetworkentity, hitcsqcentities);
+			trace = CL_TraceLine(shiftstart, shiftend, type, passedict, hitsupercontentsmask, hitnetworkbrushmodels, hitnetworkplayers, hitnetworkentity, hitcsqcentities, false);
 		VectorSubtract(trace.endpos, mins, trace.endpos);
 		return trace;
 	}