(svn r20732) -Fix: when trying to build a bridge over an object, try to autoremove the object if it's too high

This commit is contained in:
yexo 2010-09-03 23:48:12 +00:00
parent 0decc3e094
commit 2e054c19ad
1 changed files with 1 additions and 1 deletions

View File

@ -394,7 +394,7 @@ CommandCost CmdBuildBridge(TileIndex end_tile, DoCommandFlag flags, uint32 p1, u
case MP_OBJECT: {
const ObjectSpec *spec = ObjectSpec::GetByTile(tile);
if ((spec->flags & OBJECT_FLAG_ALLOW_UNDER_BRIDGE) == 0) goto not_valid_below;
if (GetTileMaxZ(tile) + spec->height * TILE_HEIGHT > z_start) return_cmd_error(STR_ERROR_OBJECT_IN_THE_WAY);
if (GetTileMaxZ(tile) + spec->height * TILE_HEIGHT > z_start) goto not_valid_below;
break;
}