(svn r24994) -Codechange: Replace access to service_interval with accessors (peter1138)

This commit is contained in:
rubidium
2013-02-14 17:04:01 +00:00
parent 328ed1cf94
commit c77cd1f409
12 changed files with 19 additions and 16 deletions

View File

@@ -112,8 +112,8 @@ bool Vehicle::NeedsServicing() const
/* Are we ready for the next service cycle? */
const Company *c = Company::Get(this->owner);
if (c->settings.vehicle.servint_ispercent ?
(this->reliability >= this->GetEngine()->reliability * (100 - this->service_interval) / 100) :
(this->date_of_last_service + this->service_interval >= _date)) {
(this->reliability >= this->GetEngine()->reliability * (100 - this->GetServiceInterval()) / 100) :
(this->date_of_last_service + this->GetServiceInterval() >= _date)) {
return false;
}