(svn r8620) -Fix: buoys on canal tiles do not flood anymore (Maedhros).

This commit is contained in:
rubidium 2007-02-07 18:01:26 +00:00
parent d95a872579
commit 5666d8d727
1 changed files with 2 additions and 2 deletions

View File

@ -661,8 +661,8 @@ void TileLoop_Water(TileIndex tile)
{{ 0, -1}, {0, 0}, {1, 0}, { 0, -1}, { 1, -1}}
};
/* Ensure sea-level canals do not flood */
if (IsTileType(tile, MP_WATER) && !IsTileOwner(tile, OWNER_WATER)) return;
/* Ensure sea-level canals and buoys on canal borders do not flood */
if ((IsTileType(tile, MP_WATER) || IsBuoyTile(tile)) && !IsTileOwner(tile, OWNER_WATER)) return;
if (IS_INT_INSIDE(TileX(tile), 1, MapSizeX() - 3 + 1) &&
IS_INT_INSIDE(TileY(tile), 1, MapSizeY() - 3 + 1)) {