summaryrefslogtreecommitdiff
path: root/src/town_cmd.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/town_cmd.cpp')
-rw-r--r--src/town_cmd.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index c2d87cb6c..1fa6fa97a 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -1928,7 +1928,8 @@ static bool DoBuildStatueOfCompany(TileIndex tile, TownID town_id)
PlayerID old;
CommandCost r;
- if (GetTileSlope(tile, NULL) != SLOPE_FLAT) return false;
+ /* Statues can be build on slopes, just like houses. Only the steep slopes is a no go. */
+ if (IsSteepSlope(GetTileSlope(tile, NULL))) return false;
if (!IsTileType(tile, MP_HOUSE) &&
!IsTileType(tile, MP_CLEAR) &&