summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
authorSteve Melenchuk <smelenchuk@gmail.com>2012-08-15 12:48:51 -0600
committerSteve Melenchuk <smelenchuk@gmail.com>2012-08-15 12:48:51 -0600
commitb08aebe72ee46d028d054bf0ef8a67eb596db6d6 (patch)
tree2e0561b9c9cce51a8b820cc9f8930c3208a67bba /crawl-ref/source/show.cc
parentd62a275fae9e89ecaeb1a1d79d3830bbb0ebe8c0 (diff)
downloadcrawl-ref-b08aebe72ee46d028d054bf0ef8a67eb596db6d6.tar.gz
crawl-ref-b08aebe72ee46d028d054bf0ef8a67eb596db6d6.zip
QUAD DAMAGE emits an Orb-style glow while in effect.
It's the same radius, only all blue instead of mutagenic.
Diffstat (limited to 'crawl-ref/source/show.cc')
-rw-r--r--crawl-ref/source/show.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/show.cc b/crawl-ref/source/show.cc
index eeda476d5b..f8a98c38fe 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -142,6 +142,9 @@ static void _update_feat_at(const coord_def &gp)
if (orb_haloed(gp))
env.map_knowledge(gp).flags |= MAP_ORB_HALOED;
+ if (quad_haloed(gp))
+ env.map_knowledge(gp).flags |= MAP_QUAD_HALOED;
+
if (is_sanctuary(gp))
{
if (testbits(env.pgrid(gp), FPROP_SANCTUARY_1))