diff options
author | Darkvater <darkvater@openttd.org> | 2005-12-21 01:14:01 +0000 |
---|---|---|
committer | Darkvater <darkvater@openttd.org> | 2005-12-21 01:14:01 +0000 |
commit | a24de0ba3bc501de76d191512df36259d3654d8e (patch) | |
tree | 275eef78437a409a63b79e7a4e8aa2b649282252 | |
parent | 71425127547e3b57e1c2bb67454e6d3a680a6c3a (diff) | |
download | openttd-a24de0ba3bc501de76d191512df36259d3654d8e.tar.xz |
(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
-rw-r--r-- | order_gui.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |