Changeset - r14094:63981e18ea21
[Not reviewed]
master
0 1 0
smatz - 14 years ago 2009-12-28 12:12:57
smatz@openttd.org
(svn r18651) -Fix [FS#3438](r18518): [NoAI] When AI tried to create NO_UNLOAD order, GOTO_NEAREST_DEPOT order was created instead
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/ai/api/ai_order.hpp
Show inline comments
 
@@ -67,7 +67,7 @@ public:
 
		/** Stop in the depot instead of only go there for servicing; only for depots. */
 
		AIOF_STOP_IN_DEPOT     = 1 << 3,
 
		/** Go to nearest depot. */
 
		AIOF_GOTO_NEAREST_DEPOT = 1 << 4,
 
		AIOF_GOTO_NEAREST_DEPOT = 1 << 8,
 

	
 
		/** All flags related to non-stop settings. */
 
		AIOF_NON_STOP_FLAGS    = AIOF_NON_STOP_INTERMEDIATE | AIOF_NON_STOP_DESTINATION,
0 comments (0 inline, 0 general)