(svn r2058) -Fix: hopefully this fixes the reverse-train-in-depot-bugs (plural)

pull/155/head
truelight 20 years ago
parent 4d55d8a4bd
commit 0560b88db2

@ -1086,9 +1086,14 @@ static void ReverseTrainSwapVeh(Vehicle *v, int l, int r)
/* update other vars */ /* update other vars */
UpdateVarsAfterSwap(a); UpdateVarsAfterSwap(a);
UpdateVarsAfterSwap(b); UpdateVarsAfterSwap(b);
VehicleEnterTile(a, a->tile, a->x_pos, a->y_pos);
VehicleEnterTile(b, b->tile, b->x_pos, b->y_pos);
} else { } else {
if (!(a->u.rail.track & 0x80)) a->direction ^= 4; if (!(a->u.rail.track & 0x80)) a->direction ^= 4;
UpdateVarsAfterSwap(a); UpdateVarsAfterSwap(a);
VehicleEnterTile(a, a->tile, a->x_pos, a->y_pos);
} }
} }

Loading…
Cancel
Save