From: mand1nga Date: Sat, 6 Aug 2011 23:01:55 +0000 (-0300) Subject: Made bots walk to any reachable waypoint in case they got stuck X-Git-Tag: xonotic-v0.5.0~148^2~26 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=commitdiff_plain;h=448fb2321fe3871fd8c6a4c4ea2126fb1f8c548e Made bots walk to any reachable waypoint in case they got stuck --- diff --git a/qcsrc/server/bot/navigation.qc b/qcsrc/server/bot/navigation.qc index 03a549439..258d3d177 100644 --- a/qcsrc/server/bot/navigation.qc +++ b/qcsrc/server/bot/navigation.qc @@ -1027,7 +1027,7 @@ void navigation_unstuck() while(head) { if(head.classname=="waypoint") - if(!(head.wpflags & WAYPOINTFLAG_GENERATED)) + // if(!(head.wpflags & WAYPOINTFLAG_GENERATED)) { if(bot_waypoint_queue_goal) bot_waypoint_queue_goal.bot_waypoint_queue_nextgoal = head;