File diff r23512:89adada9c9f0 → r23513:02bc46fca78d
src/vehicle.cpp
Show inline comments
 
@@ -1345,14 +1345,17 @@ void AgeVehicle(Vehicle *v)
 

	
 
	SetWindowDirty(WC_VEHICLE_DETAILS, v->index);
 

	
 
	/* Don't warn about non-primary or not ours vehicles or vehicles that are crashed */
 
	if (v->Previous() != NULL || v->owner != _local_company || (v->vehstatus & VS_CRASHED) != 0) return;
 

	
 
	const Company *c = Company::Get(v->owner);
 
	/* Don't warn if a renew is active */
 
	if (Company::Get(v->owner)->settings.engine_renew && v->GetEngine()->company_avail != 0) return;
 
	if (c->settings.engine_renew && v->GetEngine()->company_avail != 0) return;
 
	/* Don't warn if a replacement is active */
 
	if (EngineHasReplacementForCompany(c, v->engine_type, v->group_id)) return;
 

	
 
	StringID str;
 
	if (age == -DAYS_IN_LEAP_YEAR) {
 
		str = STR_NEWS_VEHICLE_IS_GETTING_OLD;
 
	} else if (age == 0) {
 
		str = STR_NEWS_VEHICLE_IS_GETTING_VERY_OLD;