(svn r9753) -Fix [FS#732]: trains are lost after autorenewal/autoreplace

v->dest_tile is now copied when replacing the front engine
This commit is contained in:
bjarni 2007-04-29 20:16:58 +00:00
parent 6440440f12
commit 95e48eacac
1 changed files with 1 additions and 0 deletions

View File

@ -196,6 +196,7 @@ static int32 ReplaceVehicle(Vehicle **w, byte flags, int32 total_cost)
new_v->service_interval = old_v->service_interval;
new_front = true;
new_v->unitnumber = old_v->unitnumber; // use the same unit number
new_v->dest_tile = old_v->dest_tile;
new_v->current_order = old_v->current_order;
if (old_v->type == VEH_TRAIN && GetNextVehicle(old_v) != NULL){