From 246e53d2060b4a6531608a17cf8a11d14a03f150 Mon Sep 17 00:00:00 2001 From: bjarni Date: Thu, 27 Apr 2006 23:11:43 +0000 Subject: [PATCH] (svn r4599) -Fix: [Cloning, autoreplace] FS#141 clone service-interval now cloned vehicles get the same service interval as the original vehicle I applied this to autoreplace as well even though it's not mentioned in the bug report (autorenew should not alter service interval) --- vehicle.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/vehicle.c b/vehicle.c index 7ba0987518..2522bf5e14 100644 --- a/vehicle.c +++ b/vehicle.c @@ -1567,6 +1567,7 @@ int32 CmdCloneVehicle(TileIndex tile, uint32 flags, uint32 p1, uint32 p2) } else { // this is a front engine or not a train. It need orders w_front = w; + w->service_interval = v->service_interval; DoCommand(0, (v->index << 16) | w->index, p2 & 1 ? CO_SHARE : CO_COPY, flags, CMD_CLONE_ORDER); } w_rear = w; // trains needs to know the last car in the train, so they can add more in next loop @@ -1666,6 +1667,7 @@ static int32 ReplaceVehicle(Vehicle **w, byte flags) ChangeVehicleViewWindow(old_v, new_v); new_v->profit_this_year = old_v->profit_this_year; new_v->profit_last_year = old_v->profit_last_year; + new_v->service_interval = old_v->service_interval; new_front = true; new_v->current_order = old_v->current_order;