summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/effects.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/effects.cc')
-rw-r--r--crawl-ref/source/effects.cc11
1 files changed, 7 insertions, 4 deletions
diff --git a/crawl-ref/source/effects.cc b/crawl-ref/source/effects.cc
index 98e887bafb..5b6174605b 100644
--- a/crawl-ref/source/effects.cc
+++ b/crawl-ref/source/effects.cc
@@ -2245,12 +2245,13 @@ static void _hell_effects()
if (summon_instead)
{
create_monster(
- mgen_data( which_beastie, BEH_HOSTILE, 0, you.pos(), MHITYOU ));
+ mgen_data::hostile_at(which_beastie,
+ you.pos(), 0, 0, true));
}
else
{
- miscast_effect( which_miscast, 4 + random2(6),
- random2avg(97, 3), 100, "the effects of Hell" );
+ miscast_effect(which_miscast, 4 + random2(6),
+ random2avg(97, 3), 100, "the effects of Hell");
}
}
@@ -2267,9 +2268,11 @@ static void _hell_effects()
mg.foe = MHITYOU;
create_monster(mg);
- for (int i = 0; i < 4; i++)
+ for (int i = 0; i < 4; ++i)
+ {
if (one_chance_in(3))
create_monster(mg);
+ }
}
}