summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-shoals.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/dgn-shoals.cc')
-rw-r--r--crawl-ref/source/dgn-shoals.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/dgn-shoals.cc b/crawl-ref/source/dgn-shoals.cc
index 0447ff0f69..d51e20ed27 100644
--- a/crawl-ref/source/dgn-shoals.cc
+++ b/crawl-ref/source/dgn-shoals.cc
@@ -83,9 +83,9 @@ static int shoals_plant_quota = 0;
static dungeon_feature_type _shoals_feature_by_height(int height)
{
return height >= SHT_STONE ? DNGN_STONE_WALL :
- height >= SHT_ROCK? DNGN_ROCK_WALL :
- height >= SHT_FLOOR? DNGN_FLOOR :
- height >= SHT_SHALLOW_WATER? DNGN_SHALLOW_WATER
+ height >= SHT_ROCK ? DNGN_ROCK_WALL :
+ height >= SHT_FLOOR ? DNGN_FLOOR :
+ height >= SHT_SHALLOW_WATER ? DNGN_SHALLOW_WATER
: DNGN_DEEP_WATER;
}