summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
authorEronarn Palazzo <eronarn@gmail.com>2013-01-03 09:28:10 -0500
committerAdam Borowski <kilobyte@angband.pl>2013-01-08 04:00:28 +0100
commitfc37d1d730621de1de08400e438879b2f32679b6 (patch)
treedda129ec088e2c90604db4d7d7d8ee2ebd97300f /crawl-ref/source/show.cc
parent8e5b3ad9df554166a3e51a62c8435372b25bdc27 (diff)
downloadcrawl-ref-fc37d1d730621de1de08400e438879b2f32679b6.tar.gz
crawl-ref-fc37d1d730621de1de08400e438879b2f32679b6.zip
Give lava orcs a heat halo that causes fire damage to nearby enemies.
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 7d53aac0d8..e2d7ea86e9 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -149,6 +149,9 @@ static void _update_feat_at(const coord_def &gp)
if (disjunction_haloed(gp))
env.map_knowledge(gp).flags |= MAP_DISJUNCT;
+ if (heated(gp))
+ env.map_knowledge(gp).flags |= MAP_HOT;
+
if (is_sanctuary(gp))
{
if (testbits(env.pgrid(gp), FPROP_SANCTUARY_1))