summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-shoals.cc
diff options
context:
space:
mode:
authorDarshan Shaligram <dshaligram@users.sourceforge.net>2009-12-26 22:46:16 +0530
committerDarshan Shaligram <dshaligram@users.sourceforge.net>2009-12-26 22:46:16 +0530
commit0195242aa2ca905ad68c99368a06d8100b2a2fa2 (patch)
treefb305e54cc26ac4a2837af222c14b263e823756e /crawl-ref/source/dgn-shoals.cc
parent61e082e6697779272d5f3503e2751a0ec91283c7 (diff)
downloadcrawl-ref-0195242aa2ca905ad68c99368a06d8100b2a2fa2.tar.gz
crawl-ref-0195242aa2ca905ad68c99368a06d8100b2a2fa2.zip
Add rock outcrops at the highest points of the Shoal islands. Also fix Shoal:$ having no rune.
Diffstat (limited to 'crawl-ref/source/dgn-shoals.cc')
-rw-r--r--crawl-ref/source/dgn-shoals.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/dgn-shoals.cc b/crawl-ref/source/dgn-shoals.cc
index 949812d05f..170a004b59 100644
--- a/crawl-ref/source/dgn-shoals.cc
+++ b/crawl-ref/source/dgn-shoals.cc
@@ -143,7 +143,9 @@ static void _shoals_smooth()
static dungeon_feature_type _shoals_feature_at(int x, int y)
{
const int height = _shoals_heights[y][x];
- return height >= 0? DNGN_FLOOR :
+ return height >= 230 ? DNGN_STONE_WALL :
+ height >= 170? DNGN_ROCK_WALL :
+ height >= 0? DNGN_FLOOR :
height >= -14? DNGN_SHALLOW_WATER : DNGN_DEEP_WATER;
}