summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-place.cc
diff options
context:
space:
mode:
authorChris Campbell <chriscampbell89@gmail.com>2014-04-20 10:04:45 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-04-26 04:43:55 +0100
commit4089521b8862ac51d760d48a0f0cdf9f7af8f7ed (patch)
treee8ab526125a106e9d0fa14b32ec4c840d711a44f /crawl-ref/source/mon-place.cc
parentb7e33c911dbbe49e54bd94afcba008cb58b6e0b1 (diff)
downloadcrawl-ref-4089521b8862ac51d760d48a0f0cdf9f7af8f7ed.tar.gz
crawl-ref-4089521b8862ac51d760d48a0f0cdf9f7af8f7ed.zip
Don't give plain salamanders bands
Leave the bands to the classed salamanders instead.
Diffstat (limited to 'crawl-ref/source/mon-place.cc')
-rw-r--r--crawl-ref/source/mon-place.cc9
1 files changed, 0 insertions, 9 deletions
diff --git a/crawl-ref/source/mon-place.cc b/crawl-ref/source/mon-place.cc
index 8be6716852..8480a3cc1a 100644
--- a/crawl-ref/source/mon-place.cc
+++ b/crawl-ref/source/mon-place.cc
@@ -2728,15 +2728,6 @@ static band_type _choose_band(monster_type mon_type, int &band_size,
break;
}
- // Don't give them a band in shallower places; one can be enough
- case MONS_SALAMANDER:
- if (player_in_branch(BRANCH_DEPTHS) && coinflip())
- {
- band = BAND_SALAMANDERS;
- band_size = random_range(1, 2);
- }
- break;
-
case MONS_SALAMANDER_MYSTIC:
band = BAND_SALAMANDERS;
band_size = random_range(2, 3);