(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)
This commit is contained in:
bjarni
2005-01-24 22:24:47 +00:00
parent 8f0ea94363
commit f7774a007a
6 changed files with 23 additions and 15 deletions

View File

@@ -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;