summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 20:17:44 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-07 20:17:44 +0000
commitba86334fd5a576409888450ff33a29665276b4d6 (patch)
treef4a503642654888e3a2d198a68fe05b61825a5fa /crawl-ref/source/spells2.cc
parentb7594aaf2042402a9f4ad0c31a7bfe860db8899c (diff)
downloadcrawl-ref-ba86334fd5a576409888450ff33a29665276b4d6.tar.gz
crawl-ref-ba86334fd5a576409888450ff33a29665276b4d6.zip
Make cast_demonic_horde() properly summon lesser demons again.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5551 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index d7789efa73..d4b4d7f3ca 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -1875,7 +1875,7 @@ bool cast_demonic_horde(int pow, bool god_gift)
for (int i = 0; i < how_many; ++i)
{
- if (_summon_demon_wrapper(pow, god_gift, DEMON_COMMON,
+ if (_summon_demon_wrapper(pow, god_gift, DEMON_LESSER,
std::min(2 + (random2(pow) / 4), 6),
random2(pow) > 3))
{