summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/acr.cc
diff options
context:
space:
mode:
authorCharles Otto <ottochar@gmail.com>2009-11-05 01:15:35 -0500
committerCharles Otto <ottochar@gmail.com>2009-11-05 01:18:29 -0500
commitb9593f0b29d9201502c53a35a43389b175943b61 (patch)
treef35216b6219400a6c0ea134fdd425be897447418 /crawl-ref/source/acr.cc
parent3890b0dcf7b0b897edc1b04099f56709c18b012c (diff)
downloadcrawl-ref-b9593f0b29d9201502c53a35a43389b175943b61.tar.gz
crawl-ref-b9593f0b29d9201502c53a35a43389b175943b61.zip
Let Feawn worshipers travel/run through plants they can pass through.
Diffstat (limited to 'crawl-ref/source/acr.cc')
-rw-r--r--crawl-ref/source/acr.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 1dea9a5a38..7f52fd60e3 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -3888,13 +3888,13 @@ static void _move_player(coord_def move)
monsters * current = monster_at(you.pos());
if(!current || !feawn_passthrough(current))
{
- // Probably need a better messages. -cao
- if(mons_genus(targ_monst->type == MONS_FUNGUS))
+ // Probably need better messages. -cao
+ if(mons_genus(targ_monst->type) == MONS_FUNGUS)
{
mprf("You walk carefully through the fungus.");
}
else
- mprf("You walk carefully throuh the plants.");
+ mprf("You walk carefully through the plants.");
}
targ_monst = NULL;
}