From: Rudolf Polzer Date: Sat, 10 Jan 2015 17:00:36 +0000 (-0800) Subject: Oops, clear useless flags at the end for consistency. X-Git-Tag: xonotic-v0.8.0~14 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=6a33543500b7f5483e2cb314de6ac02a274e74ea;p=xonotic%2Fxonotic-data.pk3dir.git Oops, clear useless flags at the end for consistency. --- diff --git a/qcsrc/server/bot/waypoints.qc b/qcsrc/server/bot/waypoints.qc index 79c441586..870a558c5 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()