@@ -2453,7 +2453,7 @@ static void TileLoop_Track(TileIndex til
TileIndex n = tile + TileDiffXY(0, -1);
TrackBits nrail = (IsPlainRailTile(n) ? GetTrackBits(n) : TRACK_BIT_NONE);
if (!IsTileType(n, MP_RAILWAY) ||
if ((!IsTileType(n, MP_RAILWAY) && !IsRailWaypointTile(n)) ||
!IsTileOwner(n, owner) ||
nrail == TRACK_BIT_UPPER ||
nrail == TRACK_BIT_LEFT) {
@@ -2468,7 +2468,7 @@ static void TileLoop_Track(TileIndex til
TileIndex n = tile + TileDiffXY(0, 1);
nrail == TRACK_BIT_LOWER ||
nrail == TRACK_BIT_RIGHT) {
@@ -2484,7 +2484,7 @@ static void TileLoop_Track(TileIndex til
TileIndex n = tile + TileDiffXY(-1, 0);
@@ -2499,7 +2499,7 @@ static void TileLoop_Track(TileIndex til
TileIndex n = tile + TileDiffXY(1, 0);
Status change: