(svn r15397) -Fix [FS#2618]: a town could build a statue under a bridge.

This commit is contained in:
rubidium 2009-02-07 16:02:29 +00:00
parent abb17d64a1
commit e31e514474
1 changed files with 2 additions and 0 deletions

View File

@ -2182,6 +2182,8 @@ static bool DoBuildStatueOfCompany(TileIndex tile, TownID town_id)
{
/* Statues can be build on slopes, just like houses. Only the steep slopes is a no go. */
if (IsSteepSlope(GetTileSlope(tile, NULL))) return false;
/* Don't build statues under bridges. */
if (MayHaveBridgeAbove(tile) && IsBridgeAbove(tile)) return false;
if (!IsTileType(tile, MP_HOUSE) &&
!IsTileType(tile, MP_CLEAR) &&