(svn r11338) -Fix [FS#1359]: water tiles not at sealevel (i.e. canals) should not be owned by water as that signals normal water.

This commit is contained in:
rubidium 2007-10-22 17:03:08 +00:00
parent 08dadf4942
commit f8293ec0c5
1 changed files with 1 additions and 1 deletions

View File

@ -2052,7 +2052,7 @@ bool AfterLoadGame()
if (CheckSavegameVersion(46)) {
Station *st;
FOR_ALL_STATIONS(st) {
if (st->IsBuoy() && IsTileOwner(st->xy, OWNER_NONE)) SetTileOwner(st->xy, OWNER_WATER);
if (st->IsBuoy() && IsTileOwner(st->xy, OWNER_NONE) && TileHeight(st->xy) == 0) SetTileOwner(st->xy, OWNER_WATER);
}
}