summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godabil.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/godabil.cc')
-rw-r--r--crawl-ref/source/godabil.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/crawl-ref/source/godabil.cc b/crawl-ref/source/godabil.cc
index 1647678869..7432ec5f72 100644
--- a/crawl-ref/source/godabil.cc
+++ b/crawl-ref/source/godabil.cc
@@ -396,12 +396,11 @@ void feawn_neutralise_plant(monsters *plant)
plant->flags |= MF_WAS_NEUTRAL;
}
-// During prayer feawn allows worshipers to walk on top of stationary plants
-// and fungi.
+// Feawn allows worshipers to walk on top of stationary plants and
+// fungi.
bool feawn_passthrough(const monsters * target)
{
return (target && you.religion == GOD_FEAWN
- && you.duration[DUR_PRAYER]
&& mons_is_plant(target)
&& mons_is_stationary(target));
}