diff -r 3a679b6e8b30 -r 53483e249123 src/town_cmd.cpp --- a/src/town_cmd.cpp Sun Sep 09 11:23:49 2007 +0000 +++ b/src/town_cmd.cpp Sun Sep 09 11:30:44 2007 +0000 @@ -1928,7 +1928,8 @@ 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) &&