(svn r11619) -Fix [FS#1531]: do not make crossing red behind depot the train is entering

This commit is contained in:
smatz 2007-12-11 19:09:36 +00:00
parent fb1d768924
commit 359c9aea3f
1 changed files with 3 additions and 2 deletions

View File

@ -3240,8 +3240,9 @@ static bool TrainCheckIfLineEnds(Vehicle *v)
return false;
}
if ((ts &= (ts >> 16)) == 0) {
/* make a rail/road crossing red */
if (IsLevelCrossingTile(tile)) {
/* 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 (!IsCrossingBarred(tile)) {
BarCrossing(tile);
SndPlayVehicleFx(SND_0E_LEVEL_CROSSING, v);