From 66ac4f4d1a249ae5e90a78007743c91d6bacb674 Mon Sep 17 00:00:00 2001 From: Darkvater Date: Wed, 21 Dec 2005 01:14:01 +0000 Subject: (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(-) (limited to 'order_gui.c') diff --git a/order_gui.c b/order_gui.c index 66b20c170..a80c34257 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; } -- cgit v1.2.3-54-g00ecf