mirror of https://github.com/OpenTTD/OpenTTD
(svn r16915) -Fix (r16909): signal updates didn't propagate through waypoints
parent
6e3d999dce
commit
5f3a097b86
|
@ -343,7 +343,7 @@ static SigFlags ExploreSegment(Owner owner)
|
|||
}
|
||||
|
||||
case MP_STATION:
|
||||
if (!IsRailwayStation(tile)) continue;
|
||||
if (!IsRailwayStation(tile) && !IsRailWaypoint(tile)) continue;
|
||||
if (GetTileOwner(tile) != owner) continue;
|
||||
if (DiagDirToAxis(enterdir) != GetRailStationAxis(tile)) continue; // different axis
|
||||
if (IsStationTileBlocked(tile)) continue; // 'eye-candy' station tile
|
||||
|
|
Loading…
Reference in New Issue