diff options
author | smatz <smatz@openttd.org> | 2008-01-12 19:33:25 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-01-12 19:33:25 +0000 |
commit | a222fe2e86d2736217f3bba43b28e95297b8d71e (patch) | |
tree | 8f221b12db266dfdc18286f8af824f52d8ecedcb /src | |
parent | 704a75871ae63a5e5d0881043feeaa413a2725b6 (diff) | |
download | openttd-a222fe2e86d2736217f3bba43b28e95297b8d71e.tar.xz |
(svn r11821) -Fix (r11802): 'optimization assert' when removing crashed wagon in some cases
Diffstat (limited to 'src')
-rw-r--r-- | src/train_cmd.cpp | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp index a8fdc8ba1..06daa39bc 100644 --- a/src/train_cmd.cpp +++ b/src/train_cmd.cpp @@ -3131,20 +3131,15 @@ static void DeleteLastWagon(Vehicle *v) delete v; - if (track != TRACK_BIT_DEPOT && track != TRACK_BIT_WORMHOLE) - SetSignalsOnBothDir(tile, (Track)(FIND_FIRST_BIT(track))); - /* Check if the wagon was on a road/rail-crossing and disable it if no * others are on it */ DisableTrainCrossing(tile); - if (track == TRACK_BIT_WORMHOLE) { // inside a tunnel / bridge - TileIndex endtile = GetOtherTunnelBridgeEnd(tile); - - if (GetVehicleTunnelBridge(tile, endtile) != NULL) return; // tunnel / bridge is busy - - /* v->direction is "random", so it cannot be used to determine the direction of the track */ + /* Update signals */ + if (IsTileType(tile, MP_TUNNELBRIDGE) || IsTileDepotType(tile, TRANSPORT_RAIL)) { UpdateSignalsOnSegment(tile, INVALID_DIAGDIR); + } else { + SetSignalsOnBothDir(tile, (Track)(FIND_FIRST_BIT(track))); } } |