diff options
Diffstat (limited to 'src/tunnel_map.cpp')
-rw-r--r-- | src/tunnel_map.cpp | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/tunnel_map.cpp b/src/tunnel_map.cpp index 47b93adf2..799b39000 100644 --- a/src/tunnel_map.cpp +++ b/src/tunnel_map.cpp @@ -56,10 +56,7 @@ bool IsTunnelInWayDir(TileIndex tile, uint z, DiagDirection dir) height = GetTileZ(tile); } while (z < height); - return - z == height && - IsTunnelTile(tile) && - GetTunnelBridgeDirection(tile) == dir; + return z == height && IsTunnelTile(tile) && GetTunnelBridgeDirection(tile) == dir; } /** @@ -70,7 +67,6 @@ bool IsTunnelInWayDir(TileIndex tile, uint z, DiagDirection dir) */ bool IsTunnelInWay(TileIndex tile, uint z) { - return - IsTunnelInWayDir(tile, z, (TileX(tile) > (MapMaxX() / 2)) ? DIAGDIR_NE : DIAGDIR_SW) || - IsTunnelInWayDir(tile, z, (TileY(tile) > (MapMaxY() / 2)) ? DIAGDIR_NW : DIAGDIR_SE); + return IsTunnelInWayDir(tile, z, (TileX(tile) > (MapMaxX() / 2)) ? DIAGDIR_NE : DIAGDIR_SW) || + IsTunnelInWayDir(tile, z, (TileY(tile) > (MapMaxY() / 2)) ? DIAGDIR_NW : DIAGDIR_SE); } |