summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc10
1 files changed, 3 insertions, 7 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index cd5913a85e..143c9555a0 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -603,11 +603,11 @@ bool cast_summon_horrible_things(int pow, god_type god)
// No more than 8 summons.
how_many_small = std::min(8, how_many_small);
- how_many_big = std::min(8, how_many_big);
+ how_many_big = std::min(8, how_many_big);
int count = 0;
- while (how_many_big > 0)
+ while (how_many_big-- > 0)
{
const int monster =
create_monster(
@@ -619,13 +619,11 @@ bool cast_summon_horrible_things(int pow, god_type god)
if (monster != -1)
{
count++;
- how_many_big--;
-
player_angers_monster(&menv[monster]);
}
}
- while (how_many_small > 0)
+ while (how_many_small-- > 0)
{
const int monster =
create_monster(
@@ -637,8 +635,6 @@ bool cast_summon_horrible_things(int pow, god_type god)
if (monster != -1)
{
count++;
- how_many_small--;
-
player_angers_monster(&menv[monster]);
}
}