summaryrefslogtreecommitdiff
path: root/aircraft_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'aircraft_cmd.c')
-rw-r--r--aircraft_cmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/aircraft_cmd.c b/aircraft_cmd.c
index c4500864e..a9fad4326 100644
--- a/aircraft_cmd.c
+++ b/aircraft_cmd.c
@@ -525,7 +525,7 @@ static void CheckIfAircraftNeedsService(Vehicle *v)
{
Station *st;
- if (_patches.servint_aircraft == 0 && IS_HUMAN_PLAYER(v->owner))
+ if (_patches.servint_aircraft == 0)
return;
if (v->date_of_last_service + v->service_interval > _date)
@@ -537,7 +537,7 @@ static void CheckIfAircraftNeedsService(Vehicle *v)
if ((v->next_order & (OT_MASK | OF_FULL_LOAD)) == (OT_GOTO_DEPOT | OF_FULL_LOAD))
return;
- if (_patches.gotodepot && IS_HUMAN_PLAYER(v->owner) && ScheduleHasDepotOrders(v->schedule_ptr))
+ if (_patches.gotodepot && ScheduleHasDepotOrders(v->schedule_ptr))
return;
st = DEREF_STATION(v->next_order_param);