From 9b1cb8d77fb95589ce2a39123faa7b39f1c8057c Mon Sep 17 00:00:00 2001 From: Mircea Kitsune Date: Sun, 3 Oct 2010 14:24:00 +0300 Subject: [PATCH] Bot clips should block waypoints too --- qcsrc/server/bot/waypoints.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/server/bot/waypoints.qc b/qcsrc/server/bot/waypoints.qc index 3cbec8761..4f3640e26 100644 --- a/qcsrc/server/bot/waypoints.qc +++ b/qcsrc/server/bot/waypoints.qc @@ -16,7 +16,7 @@ entity waypoint_spawn(vector m1, vector m2, float f) } w = spawn(); - w.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP; + w.dphitcontentsmask = DPCONTENTS_SOLID | DPCONTENTS_BODY | DPCONTENTS_PLAYERCLIP | DPCONTENTS_BOTCLIP; w.classname = "waypoint"; w.wpflags = f; setorigin(w, (m1 + m2) * 0.5); -- 2.39.2