diff options
author | truelight <truelight@openttd.org> | 2005-03-25 12:07:26 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2005-03-25 12:07:26 +0000 |
commit | 1eab0145244ce4e44e8538ea500cc802a86d85d0 (patch) | |
tree | c3d203afe5368807bdc20e6ab23c0f185502e1e8 | |
parent | 0c325e10dab3223cc5bef75e2bd0d1719457a740 (diff) | |
download | openttd-1eab0145244ce4e44e8538ea500cc802a86d85d0.tar.xz |
(svn r2058) -Fix: hopefully this fixes the reverse-train-in-depot-bugs (plural)
-rw-r--r-- | train_cmd.c | 5 |
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); } } |