summaryrefslogtreecommitdiff
path: root/order_gui.c
diff options
context:
space:
mode:
authorDarkvater <Darkvater@openttd.org>2005-12-21 01:14:01 +0000
committerDarkvater <Darkvater@openttd.org>2005-12-21 01:14:01 +0000
commit66ac4f4d1a249ae5e90a78007743c91d6bacb674 (patch)
tree275eef78437a409a63b79e7a4e8aa2b649282252 /order_gui.c
parenta5678b97007e92a8ae7722348a42217eafb653e5 (diff)
downloadopenttd-66ac4f4d1a249ae5e90a78007743c91d6bacb674.tar.xz
(svn r3325) - Fix: You couldn't send an airplane to a hangar for mandatory servicing, the NON_STOP flag failed the command.
Diffstat (limited to 'order_gui.c')
-rw-r--r--order_gui.c2
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;
}