From 293d5bffa8fce0309d769a63d77ce43d1c447535 Mon Sep 17 00:00:00 2001 From: Celestar Date: Sun, 5 Dec 2004 23:57:08 +0000 Subject: [PATCH] (svn r961) Fixed a problem with the new order system due to missing '{}' --- order_gui.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/order_gui.c b/order_gui.c index e4a524e6e4..54d404997c 100644 --- a/order_gui.c +++ b/order_gui.c @@ -190,11 +190,12 @@ static Order GetOrderCmdFromTile(Vehicle *v, uint tile) case MP_STATION: if (v->type != VEH_Aircraft) break; - if ( IsAircraftHangarTile(tile) && _map_owner[tile] == _local_player) + if ( IsAircraftHangarTile(tile) && _map_owner[tile] == _local_player) { order.type = OT_GOTO_DEPOT; order.flags = OF_UNLOAD | OF_NON_STOP; order.station = _map2[tile]; return order; + } break; case MP_WATER: