summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/showsymb.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/showsymb.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/showsymb.cc')
-rw-r--r--crawl-ref/source/showsymb.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/showsymb.cc b/crawl-ref/source/showsymb.cc
index 940cd5bec1..b29fcf79b0 100644
--- a/crawl-ref/source/showsymb.cc
+++ b/crawl-ref/source/showsymb.cc
@@ -128,6 +128,8 @@ unsigned short _cell_feat_show_colour(const map_cell& cell,
colour = CYAN; // Silence but no holy/unholy
else if (cell.flags & MAP_ORB_HALOED)
colour = ETC_ORB_GLOW;
+ else if (cell.flags & MAP_QUAD_HALOED)
+ colour = BLUE;
else if (cell.flags & MAP_SUPPRESSED)
colour = LIGHTGREEN;
}