diff --git a/src/aircraft_cmd.cpp b/src/aircraft_cmd.cpp index fa33bb2c01..cfcd003745 100644 --- a/src/aircraft_cmd.cpp +++ b/src/aircraft_cmd.cpp @@ -535,6 +535,7 @@ CommandCost CmdStartStopAircraft(TileIndex tile, uint32 flags, uint32 p1, uint32 } v->vehstatus ^= VS_STOPPED; + v->cur_speed = 0; InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR); InvalidateWindow(WC_VEHICLE_DEPOT, v->tile); InvalidateWindowClasses(WC_AIRCRAFT_LIST); diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp index 249a319c5e..8b6ad4e727 100644 --- a/src/ship_cmd.cpp +++ b/src/ship_cmd.cpp @@ -964,6 +964,7 @@ CommandCost CmdStartStopShip(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) } v->vehstatus ^= VS_STOPPED; + v->cur_speed = 0; InvalidateWindowWidget(WC_VEHICLE_VIEW, v->index, STATUS_BAR); InvalidateWindow(WC_VEHICLE_DEPOT, v->tile); InvalidateWindowClasses(WC_SHIPS_LIST);