summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/monplace.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/monplace.cc')
-rw-r--r--crawl-ref/source/monplace.cc6
1 files changed, 2 insertions, 4 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index 3f88e4183d..753095e6b3 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -614,9 +614,6 @@ int place_monster(mgen_data mg, bool force_pos)
#endif
const band_type band = _choose_band(mg.cls, mg.power, band_size);
band_size++;
- if (band_size > 1)
- mprf("Monster type %d: Create a band (band size %d).",
- mg.cls, band_size);
for (int i = 1; i < band_size; i++)
band_monsters[i] = _band_member( band, mg.power );
@@ -1211,7 +1208,8 @@ static band_type _choose_band( int mon_type, int power, int &band_size )
#ifdef DEBUG_MON_CREATION
mpr("in choose_band()", MSGCH_DIAGNOSTICS);
#endif
- // init
+ // Band size describes the number of monsters in addition to
+ // the band leader.
band_size = 0; // Single monster, no band.
band_type band = BAND_NO_BAND;