summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.h
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fprop.h')
-rw-r--r--crawl-ref/source/fprop.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/fprop.h b/crawl-ref/source/fprop.h
index cd8abcf51e..e6fe37e9a9 100644
--- a/crawl-ref/source/fprop.h
+++ b/crawl-ref/source/fprop.h
@@ -17,7 +17,9 @@ enum feature_property_type
// NOTE: Bloody floor and sanctuary are exclusive.
FPROP_FORCE_EXCLUDE = (1 << 6),
FPROP_NO_CLOUD_GEN = (1 << 7),
- FPROP_NO_RTELE_INTO = (1 << 8)
+ FPROP_NO_RTELE_INTO = (1 << 8),
+ FPROP_NO_CTELE_INTO = (1 << 9),
+ FPROP_NO_TELE_INTO = FPROP_NO_RTELE_INTO | FPROP_NO_CTELE_INTO
};
#endif