(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
--- 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;
}