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

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
smatz 17 years ago
parent fb1d768924
commit 359c9aea3f

@ -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);

Loading…
Cancel
Save