summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/mon-info.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-08 15:47:06 +0300
committerVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-08 15:47:06 +0300
commit63ee0e170c497f07f8b333e1611c3bc02e4e9fc2 (patch)
treee5169282639452ec1db9605b0e9ff22b96fd1212 /crawl-ref/source/mon-info.cc
parentb6b37f3ffdff725c0ce94b42b6f6875fecd62e2e (diff)
downloadcrawl-ref-63ee0e170c497f07f8b333e1611c3bc02e4e9fc2.tar.gz
crawl-ref-63ee0e170c497f07f8b333e1611c3bc02e4e9fc2.zip
Replace mons_is_petrifying with monsters::petrifying.
Diffstat (limited to 'crawl-ref/source/mon-info.cc')
-rw-r--r--crawl-ref/source/mon-info.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/mon-info.cc b/crawl-ref/source/mon-info.cc
index 24bfd8c7e9..55d47f1387 100644
--- a/crawl-ref/source/mon-info.cc
+++ b/crawl-ref/source/mon-info.cc
@@ -158,7 +158,7 @@ static std::string _verbose_info(const monsters* m)
return (" (petrified)");
if (m->paralysed())
return (" (paralysed)");
- if (mons_is_petrifying(m))
+ if (m->petrifying())
return (" (petrifying)");
if (mons_is_confused(m))
return (" (confused)");