summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dgn-proclayouts.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2013-04-10 21:47:02 +0200
committerAdam Borowski <kilobyte@angband.pl>2013-04-10 21:47:02 +0200
commit7533cba44f70247141cfe97c49d0846a26c002df (patch)
tree8bce989f69623fb51544a3146190bffe854c1506 /crawl-ref/source/dgn-proclayouts.cc
parentbdaba501ab6dfa919dadfdedf165155bd4d311ff (diff)
downloadcrawl-ref-7533cba44f70247141cfe97c49d0846a26c002df.tar.gz
crawl-ref-7533cba44f70247141cfe97c49d0846a26c002df.zip
Formatting fixes.
Diffstat (limited to 'crawl-ref/source/dgn-proclayouts.cc')
-rw-r--r--crawl-ref/source/dgn-proclayouts.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/dgn-proclayouts.cc b/crawl-ref/source/dgn-proclayouts.cc
index 186b6d2f1c..ffa725010b 100644
--- a/crawl-ref/source/dgn-proclayouts.cc
+++ b/crawl-ref/source/dgn-proclayouts.cc
@@ -486,7 +486,8 @@ UnderworldLayout::operator()(const coord_def &p, const uint32_t offset) const
double extreme_proximity = max(0.0,abs(height-0.5)-0.3) * 5.0;
city = city * (1.0 - extreme_proximity);
- if (enable_city && city >= city_outer_limit) {
+ if (enable_city && city >= city_outer_limit)
+ {
dungeon_feature_type city_wall = DNGN_ROCK_WALL;
if (rich > 0.5) city_wall = DNGN_STONE_WALL;
else if (rich > 0.75) city_wall = DNGN_METAL_WALL;