summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-01 12:10:41 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-01 12:10:41 +0200
commit97e29d768f420e03ae5397bd86754a229b6a3d21 (patch)
tree8ff20ff6d935c346adbfc8fa88c88f184ef1f8c4 /crawl-ref/source/fprop.cc
parent7f6cff1f59f5da18f630e3e5573e13fe82e66cc1 (diff)
downloadcrawl-ref-97e29d768f420e03ae5397bd86754a229b6a3d21.tar.gz
crawl-ref-97e29d768f420e03ae5397bd86754a229b6a3d21.zip
Add a KPROP "no_jiyva" that renders items safe.
This was needed to avoid giving people who convert somewhere else and don't enter Slime:6 before having ****** an edge. This particular solution gives that edge to everyone, this was chosen over the other alternative of pre-eating everything in that vault.
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 93ed880ea1..4d7a352827 100644
--- a/crawl-ref/source/fprop.cc
+++ b/crawl-ref/source/fprop.cc
@@ -67,6 +67,8 @@ feature_property_type str_to_fprop(const std::string &str)
return (FPROP_NO_TIDE);
if (str == "no_submerge")
return (FPROP_NO_SUBMERGE);
+ if (str == "no_jiyva")
+ return (FPROP_NO_JIYVA);
return (FPROP_NONE);
}