From f7774a007a21a21a041642c12e942512a546f346 Mon Sep 17 00:00:00 2001 From: bjarni Date: Mon, 24 Jan 2005 22:24:47 +0000 Subject: (svn r1652) Fix: train and road vehicle lists are now redrawn when vehicles enters/leaves a depot (Hackykid) fix: the ship status bar was not updated properly after a breakdown if show_speed was off (Hackykid) --- aircraft_cmd.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'aircraft_cmd.c') diff --git a/aircraft_cmd.c b/aircraft_cmd.c index 5da4b6929..ce4ee322b 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -1029,15 +1029,15 @@ static void ProcessAircraftOrder(Vehicle *v) v->current_order.type == OT_LOADING) { if (v->current_order.type != OT_GOTO_DEPOT || !(v->current_order.flags & OF_UNLOAD)) - return; - } + return; + } if (v->current_order.type == OT_GOTO_DEPOT && (v->current_order.flags & (OF_UNLOAD | OF_FULL_LOAD)) == (OF_UNLOAD | OF_FULL_LOAD) && - !VehicleNeedsService(v) && + !VehicleNeedsService(v) && v->set_for_replacement == false) { - v->cur_order_index++; - } + v->cur_order_index++; + } if (v->cur_order_index >= v->num_orders) v->cur_order_index = 0; -- cgit v1.2.3-54-g00ecf