# HG changeset patch # User Darkvater # Date 1135127641 0 # Node ID e0412c57f738279dc508842e2e09b4c390389454 # Parent 770ebae257e788ded89755325bc123b9c684e85e (svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command. diff -r 770ebae257e7 -r e0412c57f738 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; }