summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilecell.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/tilecell.cc')
-rw-r--r--crawl-ref/source/tilecell.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/tilecell.cc b/crawl-ref/source/tilecell.cc
index 410bc628c3..97f0327d07 100644
--- a/crawl-ref/source/tilecell.cc
+++ b/crawl-ref/source/tilecell.cc
@@ -25,7 +25,7 @@ void packed_cell::clear()
is_bloody = false;
is_silenced = false;
- is_haloed = false;
+ halo = HALO_NONE;
is_moldy = false;
glowing_mold = false;
is_sanctuary = false;
@@ -40,7 +40,7 @@ bool packed_cell::operator ==(const packed_cell &other) const
if (is_bloody != other.is_bloody) return false;
if (is_silenced != other.is_silenced) return false;
- if (is_haloed != other.is_haloed) return false;
+ if (halo != other.halo) return false;
if (is_moldy != other.is_moldy) return false;
if (glowing_mold != other.glowing_mold) return false;
if (is_sanctuary != other.is_sanctuary) return false;