summaryrefslogtreecommitdiff
path: root/src/tile_map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tile_map.cpp')
-rw-r--r--src/tile_map.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/tile_map.cpp b/src/tile_map.cpp
index 017bb5c56..86670c88a 100644
--- a/src/tile_map.cpp
+++ b/src/tile_map.cpp
@@ -22,11 +22,7 @@ Slope GetTileSlope(TileIndex tile, int *h)
{
assert(tile < MapSize());
- uint x = TileX(tile);
- uint y = TileY(tile);
-
- if (x == MapMaxX() || y == MapMaxY() ||
- ((x == 0 || y == 0) && _settings_game.construction.freeform_edges)) {
+ if (!IsInnerTile(tile)) {
if (h != NULL) *h = TileHeight(tile);
return SLOPE_FLAT;
}