(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)
This commit is contained in:
bjarni 2006-04-27 23:11:43 +00:00
parent 02d07a056f
commit 246e53d206
1 changed files with 2 additions and 0 deletions

View File

@ -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;