From ca3f1f64068e28109a5b6d62f88ef5f18f581856 Mon Sep 17 00:00:00 2001 From: frosch Date: Sun, 17 Aug 2008 18:48:18 +0000 Subject: [PATCH] (svn r14095) -Fix (r14076): Trains shall not stop instantly. --- src/vehicle.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vehicle.cpp b/src/vehicle.cpp index ce9d6caa6c..dd4743fff0 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -1079,7 +1079,7 @@ CommandCost CmdStartStopVehicle(TileIndex tile, uint32 flags, uint32 p1, uint32 if (v->IsStoppedInDepot() && (flags & DC_AUTOREPLACE) == 0) DeleteVehicleNews(p1, vehicle_waiting_in_depot[v->type]); v->vehstatus ^= VS_STOPPED; - v->cur_speed = 0; + if (v->type != VEH_TRAIN) v->cur_speed = 0; // trains can stop 'slowly' InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, VVW_WIDGET_START_STOP_VEH); InvalidateWindow(WC_VEHICLE_DEPOT, v->tile); InvalidateWindowClasses(vehicle_list[v->type]);