From a24de0ba3bc501de76d191512df36259d3654d8e Mon Sep 17 00:00:00 2001 From: Darkvater Date: Wed, 21 Dec 2005 01:14:01 +0000 Subject: [PATCH] (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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/order_gui.c b/order_gui.c index 66b20c1703..a80c34257e 100644 --- a/order_gui.c +++ b/order_gui.c @@ -218,7 +218,7 @@ static Order GetOrderCmdFromTile(const Vehicle *v, TileIndex tile) 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; }