(svn r11623) -Fix [FS#1533] (r11619): assert when train is going over two crossings next to each other

This commit is contained in:
smatz 2007-12-11 22:50:13 +00:00
parent 78ae599790
commit ed54703db8
1 changed files with 1 additions and 1 deletions

View File

@ -3242,7 +3242,7 @@ static bool TrainCheckIfLineEnds(Vehicle *v)
if ((ts &= (ts >> 16)) == 0) {
/* make a rail/road crossing red
* do not make crossing red behind depot the train is entering */
if (IsLevelCrossingTile(tile) && (GetRailTileType(v->tile) != RAIL_TILE_DEPOT || GetRailDepotDirection(v->tile) == dir)) {
if (IsLevelCrossingTile(tile) && (!IsTileDepotType(v->tile, TRANSPORT_RAIL) || GetRailDepotDirection(v->tile) == dir)) {
if (!IsCrossingBarred(tile)) {
BarCrossing(tile);
SndPlayVehicleFx(SND_0E_LEVEL_CROSSING, v);