summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilecell.cc
diff options
context:
space:
mode:
authorontoclasm <yokomeshi@gmail.com>2012-11-16 00:14:46 -0600
committerAdam Borowski <kilobyte@angband.pl>2013-01-08 04:00:28 +0100
commit2c5fb7653384d0f72babaf2312c50989ea0b1021 (patch)
treef68796e9e306f0a135ad399117b0b080f4025973 /crawl-ref/source/tilecell.cc
parentaf44d5ed3a4f1c48834bbfd36d49d91f1bd6baca (diff)
downloadcrawl-ref-2c5fb7653384d0f72babaf2312c50989ea0b1021.tar.gz
crawl-ref-2c5fb7653384d0f72babaf2312c50989ea0b1021.zip
Display heat auras in tiles
Diffstat (limited to 'crawl-ref/source/tilecell.cc')
-rw-r--r--crawl-ref/source/tilecell.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/tilecell.cc b/crawl-ref/source/tilecell.cc
index ea1a1f6ebc..11637257ae 100644
--- a/crawl-ref/source/tilecell.cc
+++ b/crawl-ref/source/tilecell.cc
@@ -38,6 +38,7 @@ void packed_cell::clear()
travel_trail = 0;
quad_glow = 0;
disjunct = 0;
+ heat_aura = 0;
}
bool packed_cell::operator ==(const packed_cell &other) const
@@ -60,6 +61,7 @@ bool packed_cell::operator ==(const packed_cell &other) const
if (travel_trail != other.travel_trail) return false;
if (quad_glow != other.quad_glow) return false;
if (disjunct != other.disjunct) return false;
+ if (heat_aura != other.heat_aura) return false;
if (num_dngn_overlay != other.num_dngn_overlay) return false;
for (int i = 0; i < num_dngn_overlay; ++i)