summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tiledgnbuf.cc
diff options
context:
space:
mode:
authorontoclasm <yokomeshi@gmail.com>2013-01-12 22:17:46 -0600
committerontoclasm <yokomeshi@gmail.com>2013-01-12 22:18:08 -0600
commit8968c45923a8e01dfc31f54adf431032b4ed2f90 (patch)
tree780e168acfaf2d842a0d93464a4d2012fcc41491 /crawl-ref/source/tiledgnbuf.cc
parent1a32ccd05a03cd6d20ed0f4c7d2b6611c5ddcb87 (diff)
downloadcrawl-ref-8968c45923a8e01dfc31f54adf431032b4ed2f90.tar.gz
crawl-ref-8968c45923a8e01dfc31f54adf431032b4ed2f90.zip
Disjunction aura tiles.
Diffstat (limited to 'crawl-ref/source/tiledgnbuf.cc')
-rw-r--r--crawl-ref/source/tiledgnbuf.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/tiledgnbuf.cc b/crawl-ref/source/tiledgnbuf.cc
index 732a6a1e45..5a9dddbd2c 100644
--- a/crawl-ref/source/tiledgnbuf.cc
+++ b/crawl-ref/source/tiledgnbuf.cc
@@ -271,7 +271,7 @@ void DungeonCellBuffer::pack_background(int x, int y, const packed_cell &cell)
if (cell.quad_glow)
m_buf_feat.add(TILE_QUAD_GLOW, x, y);
if (cell.disjunct)
- m_buf_feat.add(TILE_DISJUNCT, x, y);
+ m_buf_feat.add(TILE_DISJUNCT + cell.disjunct - 1, x, y);
// Apply the travel exclusion under the foreground if the cell is
// visible. It will be applied later if the cell is unseen.