summaryrefslogtreecommitdiff
path: root/train_cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'train_cmd.c')
-rw-r--r--train_cmd.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/train_cmd.c b/train_cmd.c
index a99c6f5b4..512930b28 100644
--- a/train_cmd.c
+++ b/train_cmd.c
@@ -1086,9 +1086,14 @@ static void ReverseTrainSwapVeh(Vehicle *v, int l, int r)
/* update other vars */
UpdateVarsAfterSwap(a);
UpdateVarsAfterSwap(b);
+
+ VehicleEnterTile(a, a->tile, a->x_pos, a->y_pos);
+ VehicleEnterTile(b, b->tile, b->x_pos, b->y_pos);
} else {
if (!(a->u.rail.track & 0x80)) a->direction ^= 4;
UpdateVarsAfterSwap(a);
+
+ VehicleEnterTile(a, a->tile, a->x_pos, a->y_pos);
}
}