# HG changeset patch # User maedhros # Date 2007-06-26 14:43:41 # Node ID 444cfe2b3d5d4f984883387ccd9780b4fae5fd85 # Parent 64428d6c41008b2d4089f6cf29f0547e0db8663a (svn r10341) -Fix (r10236): Only update the timetable when leaving stations if this is a scheduled stop. diff --git a/src/vehicle.cpp b/src/vehicle.cpp --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -3160,14 +3160,16 @@ void Vehicle::BeginLoading() void Vehicle::LeaveStation() { 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.flags = 0; GetStation(this->last_station_visited)->loading_vehicles.remove(this); HideFillingPercent(this->fill_percent_te_id); this->fill_percent_te_id = INVALID_TE_ID; - - UpdateVehicleTimetable(this, false); }