summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-08 11:42:53 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-08 11:42:53 +0000
commit97a7a86c6b12d6cba3c6bca857396150ddec6e0e (patch)
tree231a9e5ec25b1d054bfd395790c438b713f724b5 /crawl-ref/source/spells1.cc
parent82294d69b4def8d5c2c307155fa6f6319f739468 (diff)
downloadcrawl-ref-97a7a86c6b12d6cba3c6bca857396150ddec6e0e.tar.gz
crawl-ref-97a7a86c6b12d6cba3c6bca857396150ddec6e0e.zip
Unbreak Fire Storm.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8326 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 92d6f8ef23..0cb9c11dbb 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -260,6 +260,7 @@ void setup_fire_storm(const actor *source, int pow, bolt &beam)
beam.name = "great blast of fire";
beam.ex_size = 2 + (random2(pow) > 75);
beam.flavour = BEAM_LAVA;
+ beam.real_flavour = beam.flavour;
beam.type = dchar_glyph(DCHAR_FIRED_ZAP);
beam.colour = RED;
beam.beam_source = source->mindex();
@@ -274,7 +275,6 @@ void setup_fire_storm(const actor *source, int pow, bolt &beam)
beam.ench_power = pow; // used for radius
beam.hit = 20 + pow / 10;
beam.damage = calc_dice(8, 5 + pow);
- beam.affects_items = false;
}
void cast_fire_storm(int pow, bolt &beam)