summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.h
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-02-03 16:06:26 +0100
committerAdam Borowski <kilobyte@angband.pl>2010-02-03 16:06:26 +0100
commitb278fb9ec691b38fcf745eea1fe9263a155d4829 (patch)
tree29f1b5a5820df212a22df8817ec594100ec0b552 /crawl-ref/source/fprop.h
parent649eca599fc01581b9e23ee9111ada232421fbe4 (diff)
downloadcrawl-ref-b278fb9ec691b38fcf745eea1fe9263a155d4829.tar.gz
crawl-ref-b278fb9ec691b38fcf745eea1fe9263a155d4829.zip
KPROP no_submerge, for those aquarium vaults.
Diffstat (limited to 'crawl-ref/source/fprop.h')
-rw-r--r--crawl-ref/source/fprop.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/fprop.h b/crawl-ref/source/fprop.h
index 88e5fab10b..e32cf938aa 100644
--- a/crawl-ref/source/fprop.h
+++ b/crawl-ref/source/fprop.h
@@ -19,7 +19,8 @@ enum feature_property_type
FPROP_NO_TELE_INTO = FPROP_NO_RTELE_INTO | FPROP_NO_CTELE_INTO,
// Squares that the tide should not affect.
- FPROP_NO_TIDE = (1 << 10)
+ FPROP_NO_TIDE = (1 << 10),
+ FPROP_NO_SUBMERGE = (1 << 11)
};