summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fprop.h
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.h
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.h')
-rw-r--r--crawl-ref/source/fprop.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crawl-ref/source/fprop.h b/crawl-ref/source/fprop.h
index d06b49bf9c..27cb5883db 100644
--- a/crawl-ref/source/fprop.h
+++ b/crawl-ref/source/fprop.h
@@ -23,6 +23,8 @@ enum feature_property_type
FPROP_NO_SUBMERGE = (1 << 11),
FPROP_MOLD = (1 << 12),
FPROP_GLOW_MOLD = (1 << 13),
+ // Immune to spawning jellies and off-level eating.
+ FPROP_NO_JIYVA = (1 << 14),
};