File diff r19224:da5678df5fbc → r19225:c4e5e87d718e
src/vehicle.cpp
Show inline comments
 
@@ -88,12 +88,14 @@ bool Vehicle::NeedsAutorenewing(const Co
 

	
 
void VehicleServiceInDepot(Vehicle *v)
 
{
 
	v->date_of_last_service = _date;
 
	v->breakdowns_since_last_service = 0;
 
	v->reliability = v->GetEngine()->reliability;
 
	/* Prevent vehicles from breaking down directly after exiting the depot. */
 
	v->breakdown_chance /= 4;
 
	SetWindowDirty(WC_VEHICLE_DETAILS, v->index); // ensure that last service date and reliability are updated
 
}
 

	
 
/**
 
 * Check if the vehicle needs to go to a depot in near future (if a opportunity presents itself) for service or replacement.
 
 *