(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
authorDarkvater
Wed, 21 Dec 2005 01:14:01 +0000
changeset 2778 e0412c57f738
parent 2777 770ebae257e7
child 2779 0058526344b9
(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
order_gui.c
--- a/order_gui.c	Tue Dec 20 21:59:34 2005 +0000
+++ b/order_gui.c	Wed Dec 21 01:14:01 2005 +0000
@@ -218,7 +218,7 @@
 			if (v->type != VEH_Aircraft) break;
 			if (IsAircraftHangarTile(tile) && IsTileOwner(tile, _local_player)) {
 				order.type = OT_GOTO_DEPOT;
-				order.flags = OF_PART_OF_ORDERS | OF_NON_STOP;	//XXX - whats the nonstop stuff doing here?
+				order.flags = OF_PART_OF_ORDERS;
 				order.station = _m[tile].m2;
 				return order;
 			}