diff --git a/src/vehicle.cpp b/src/vehicle.cpp index bf35856f88..a979d4de3f 100644 --- a/src/vehicle.cpp +++ b/src/vehicle.cpp @@ -771,7 +771,7 @@ uint32 Vehicle::GetGRFID() const */ void Vehicle::ShiftDates(int interval) { - this->date_of_last_service += interval; + this->date_of_last_service = std::max(this->date_of_last_service + interval, 0); } /**