summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/beam.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-08 11:47:24 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-08 11:47:24 +0000
commit8d801a154095311c6ce1f995872d47db27635811 (patch)
tree8cb7c94b15957332f483e3a5c8d3caac25d0c5c1 /crawl-ref/source/beam.cc
parent97a7a86c6b12d6cba3c6bca857396150ddec6e0e (diff)
downloadcrawl-ref-8d801a154095311c6ce1f995872d47db27635811.tar.gz
crawl-ref-8d801a154095311c6ce1f995872d47db27635811.zip
Proper radius for Ice Storm tracer. Fixes [2472601].
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8327 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/beam.cc')
-rw-r--r--crawl-ref/source/beam.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/beam.cc b/crawl-ref/source/beam.cc
index e38023ebb8..2dd06f43e4 100644
--- a/crawl-ref/source/beam.cc
+++ b/crawl-ref/source/beam.cc
@@ -5061,7 +5061,7 @@ void bolt::refine_for_explosion()
name = "ice storm";
type = dchar_glyph(DCHAR_FIRED_ZAP);
colour = WHITE;
- ex_size = 2 + (random2(ench_power) > 75);
+ ex_size = is_tracer ? 3 : (2 + (random2(ench_power) > 75));
}
if (name == "stinking cloud")