summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/show.cc
diff options
context:
space:
mode:
authorBrendan Hickey <brendan@bhickey.net>2013-03-09 17:26:09 -0800
committerBrendan Hickey <brendan@bhickey.net>2013-03-15 21:23:26 -0700
commite1b78046c4fb0d68c14de981e36c608367db366c (patch)
tree233107f2905e05acea724e16b892af62e335fa55 /crawl-ref/source/show.cc
parente3433fca80e5bff93b108c62d00a165eb79eb9b0 (diff)
downloadcrawl-ref-e1b78046c4fb0d68c14de981e36c608367db366c.tar.gz
crawl-ref-e1b78046c4fb0d68c14de981e36c608367db366c.zip
Fungus Form
A bad_form that turns you into a wandering mushroom. Player gains confusing touch, a large stealth bonus, and the inability to move when under hostile observation.
Diffstat (limited to 'crawl-ref/source/show.cc')
-rw-r--r--crawl-ref/source/show.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/show.cc b/crawl-ref/source/show.cc
index 7d53aac0d8..bbc7a35bc0 100644
--- a/crawl-ref/source/show.cc
+++ b/crawl-ref/source/show.cc
@@ -163,6 +163,9 @@ static void _update_feat_at(const coord_def &gp)
if (you.get_fearmonger(gp))
env.map_knowledge(gp).flags |= MAP_WITHHELD;
+ if (you.made_nervous_by(gp))
+ env.map_knowledge(gp).flags |= MAP_WITHHELD;
+
if (feat >= DNGN_STONE_STAIRS_DOWN_I
&& feat <= DNGN_ESCAPE_HATCH_UP
&& is_exclude_root(gp))