summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-22 15:43:00 +0000
committerdshaligram <dshaligram@c06c8d41-db1a-0410-9941-cceddc491573>2006-09-22 15:43:00 +0000
commit25f8a6e30654ad07fb3cbad80c98d5358c87c8b2 (patch)
tree7e4dfadc18de74fceab707d1cb340b07356f6ea0
parent94e34472089316ece78fc20e6d37914f279bf192 (diff)
downloadcrawl-ref-25f8a6e30654ad07fb3cbad80c98d5358c87c8b2.tar.gz
crawl-ref-25f8a6e30654ad07fb3cbad80c98d5358c87c8b2.zip
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup@74 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/monplace.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/monplace.cc b/crawl-ref/source/monplace.cc
index fad7f6375b..dfb95ab1dc 100644
--- a/crawl-ref/source/monplace.cc
+++ b/crawl-ref/source/monplace.cc
@@ -783,9 +783,9 @@ static int choose_band( int mon_type, int power, int &band_size )
if (power > 18 && one_chance_in(3))
{
band = BAND_DRACONIAN;
- // [dshaligram] band_size == 1 implies just the original monster
+ // [dshaligram] band_size == 0 implies just the original monster
// without a band.
- band_size = random_range(1, 3);
+ band_size = random_range(0, 2);
}
break;
case MONS_DRACONIAN_CALLER:
@@ -798,7 +798,7 @@ static int choose_band( int mon_type, int power, int &band_size )
if (power > 20)
{
band = BAND_DRACONIAN;
- band_size = random_range(2, 4);
+ band_size = random_range(1, 3);
}
break;
} // end switch