(svn r13488) -Fix (r13485): track wasn't removed on company bankrupcy when there was a ship on lower halftile

This commit is contained in:
smatz 2008-06-12 13:40:07 +00:00
parent 43622f95e1
commit 39b397438c
1 changed files with 2 additions and 1 deletions

View File

@ -1382,7 +1382,8 @@ static CommandCost ClearTile_Track(TileIndex tile, byte flags)
cost.AddCost(ret);
}
if (water_ground) {
/* when bankrupting, don't make water dirty, there could be a ship on lower halftile */
if (water_ground && !(flags & DC_BANKRUPT)) {
if (!EnsureNoVehicleOnGround(tile)) return CMD_ERROR;
/* The track was removed, and left a coast tile. Now also clear the water. */