summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.cc
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.cc
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.cc')
-rw-r--r--crawl-ref/source/fprop.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/fprop.cc b/crawl-ref/source/fprop.cc
index de4f5e2dde..78608860fc 100644
--- a/crawl-ref/source/fprop.cc
+++ b/crawl-ref/source/fprop.cc
@@ -43,6 +43,8 @@ feature_property_type str_to_fprop(const std::string &str)
return (FPROP_NO_TELE_INTO);
if (str == "no_tide")
return (FPROP_NO_TIDE);
+ if (str == "no_submerge")
+ return (FPROP_NO_SUBMERGE);
return (FPROP_NONE);
}