1
0
Fork 0

(svn r10341) -Fix (r10236): Only update the timetable when leaving stations if this is a scheduled stop.

release/0.6
maedhros 2007-06-26 14:43:41 +00:00
parent 90fa779a24
commit 821d10f44c
1 changed files with 4 additions and 2 deletions

View File

@ -3160,14 +3160,16 @@ void Vehicle::BeginLoading()
void Vehicle::LeaveStation() void Vehicle::LeaveStation()
{ {
assert(current_order.type == OT_LOADING); assert(current_order.type == OT_LOADING);
/* Only update the timetable if the vehicle was supposed to stop here. */
if (current_order.flags & OF_NON_STOP) UpdateVehicleTimetable(this, false);
current_order.type = OT_LEAVESTATION; current_order.type = OT_LEAVESTATION;
current_order.flags = 0; current_order.flags = 0;
GetStation(this->last_station_visited)->loading_vehicles.remove(this); GetStation(this->last_station_visited)->loading_vehicles.remove(this);
HideFillingPercent(this->fill_percent_te_id); HideFillingPercent(this->fill_percent_te_id);
this->fill_percent_te_id = INVALID_TE_ID; this->fill_percent_te_id = INVALID_TE_ID;
UpdateVehicleTimetable(this, false);
} }