summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/directn.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-05 21:23:53 +0300
committerRobert Vollmert <rvollmert@gmx.net>2009-11-05 20:54:38 +0100
commit5cae6a4d1a66d74223cf4b6001b234d24be329d9 (patch)
treec72d5a4aad815ff6c2fda7b0c6c5ca7cd10ea4f0 /crawl-ref/source/directn.cc
parent3b56c749239aef20773a7dde6e5fb726477dde48 (diff)
downloadcrawl-ref-5cae6a4d1a66d74223cf4b6001b234d24be329d9.tar.gz
crawl-ref-5cae6a4d1a66d74223cf4b6001b234d24be329d9.zip
Replace mons_is_paralysed with monsters::paralysed.
Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/directn.cc')
-rw-r--r--crawl-ref/source/directn.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/directn.cc b/crawl-ref/source/directn.cc
index 033924fc89..4ea97767f0 100644
--- a/crawl-ref/source/directn.cc
+++ b/crawl-ref/source/directn.cc
@@ -3088,7 +3088,7 @@ static std::string _stair_destination_description(const coord_def &pos)
std::string _mon_enchantments_string(const monsters* mon)
{
- const bool paralysed = mons_is_paralysed(mon);
+ const bool paralysed = mon->paralysed();
std::vector<std::string> enchant_descriptors;
for (mon_enchant_list::const_iterator e = mon->enchantments.begin();