changeset 2778:edf00c256933 draft

(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
author Darkvater <Darkvater@openttd.org>
date Wed, 21 Dec 2005 01:14:01 +0000
parents 054bcb457f67
children 5aefb1f5491b
files order_gui.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/order_gui.c
+++ b/order_gui.c
@@ -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;
 			}