summaryrefslogtreecommitdiff
path: root/src/vehicle.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/vehicle.cpp')
-rw-r--r--src/vehicle.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index c09650410..6c542b91e 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -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;
}