summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index e10fd271c0..0636b4850e 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -261,8 +261,8 @@ void cast_fire_storm(int pow, bolt &beam)
beam.hit = 20 + pow / 10;
beam.damage = calc_dice(9, 20 + pow);
- explosion(beam, false, false, true, true, false);
- mpr("A raging storm of fire appears!");
+ if (explosion(beam, false, false, true, true, false) > 0)
+ mpr("A raging storm of fire appears!");
viewwindow(1, false);
}