summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-place.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-30 21:10:26 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-30 21:10:48 -0700
commit9e66d4c01658c488405cd520472ac48be8088aa5 (patch)
tree541a6842b764b597d90a79575ef6b342822f7af2 /crawl-ref/source/mon-place.cc
parentb3d529e355dfe33d421e589ab47f25341c42658f (diff)
downloadcrawl-ref-9e66d4c01658c488405cd520472ac48be8088aa5.tar.gz
crawl-ref-9e66d4c01658c488405cd520472ac48be8088aa5.zip
Fix ugly thing banding (|amethyst)
Diffstat (limited to 'crawl-ref/source/mon-place.cc')
-rw-r--r--crawl-ref/source/mon-place.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc
index 24aa5fe3e7..5acede199e 100644
--- a/crawl-ref/source/mon-place.cc
+++ b/crawl-ref/source/mon-place.cc
@@ -2163,13 +2163,13 @@ static band_type _choose_band(monster_type mon_type, int &band_size,
band = BAND_YAKS;
band_size = 2 + random2(4);
break;
- case MONS_UGLY_THING:
- if (env.absdepth0 < 13)
- break;
- // fallthrough to very ugly things...
case MONS_VERY_UGLY_THING:
if (env.absdepth0 < 19)
break;
+ // fallthrough to ugly things...
+ case MONS_UGLY_THING:
+ if (env.absdepth0 < 13)
+ break;
band = BAND_UGLY_THINGS;
band_size = 2 + random2(4);
break;