From 6a33543500b7f5483e2cb314de6ac02a274e74ea Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sat, 10 Jan 2015 09:00:36 -0800 Subject: [PATCH] Oops, clear useless flags at the end for consistency. --- 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 79c4415869..870a558c57 100644 --- a/qcsrc/server/bot/waypoints.qc +++ b/qcsrc/server/bot/waypoints.qc @@ -1136,7 +1136,7 @@ void botframe_deleteuselesswaypoints() } } for (w = world; (w = find(w, classname, "waypoint")); ) - w.wpflags &= ~WAYPOINTFLAG_USEFUL; // temp flag + w.wpflags &= ~(WAYPOINTFLAG_USEFUL | WAYPOINTFLAG_DEAD_END); // temp flag } void botframe_autowaypoints() -- 2.39.2