summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/water_cmd.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/water_cmd.cpp b/src/water_cmd.cpp
index 8cb56f699..c7c90d019 100644
--- a/src/water_cmd.cpp
+++ b/src/water_cmd.cpp
@@ -636,8 +636,7 @@ void TileLoop_Water(TileIndex tile)
};
/* Ensure sea-level canals do not flood */
- if ((IsTileType(tile, MP_WATER) || IsTileType(tile, MP_TUNNELBRIDGE)) &&
- !IsTileOwner(tile, OWNER_WATER)) return;
+ if (IsTileType(tile, MP_WATER) && !IsTileOwner(tile, OWNER_WATER)) return;
if (IS_INT_INSIDE(TileX(tile), 1, MapSizeX() - 3 + 1) &&
IS_INT_INSIDE(TileY(tile), 1, MapSizeY() - 3 + 1)) {