summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/dungeon.h
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-13 11:15:33 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-13 11:15:33 -0700
commit527e4c3afe296e7ecc49156b9a33623caf6d861b (patch)
tree8bce3a7cb0ebb6ea0edc7091be66e04cb13e0e30 /crawl-ref/source/dungeon.h
parent14d464dfd1d6ba554389a4c6311f9b930dc29ef1 (diff)
downloadcrawl-ref-527e4c3afe296e7ecc49156b9a33623caf6d861b.tar.gz
crawl-ref-527e4c3afe296e7ecc49156b9a33623caf6d861b.zip
Clean up more door/fountain mimic code (Zaba, |amethyst)
Diffstat (limited to 'crawl-ref/source/dungeon.h')
-rw-r--r--crawl-ref/source/dungeon.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/dungeon.h b/crawl-ref/source/dungeon.h
index 4322206951..8e237e5f2a 100644
--- a/crawl-ref/source/dungeon.h
+++ b/crawl-ref/source/dungeon.h
@@ -45,7 +45,9 @@ enum map_mask_type
MMT_NO_TRAP = 0x80, // No trap generation
MMT_MIMIC = 0x100, // Feature mimics
MMT_NO_MIMIC = 0x200, // Feature shouldn't be turned into a mimic.
+#if TAG_MAJOR_VERSION == 34
MMT_WAS_DOOR_MIMIC = 0x400, // There was a door mimic there.
+#endif
MMT_TURNED_TO_FLOOR = 0x800, // This feature was dug, deconstructed or such.
};