summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/godabil.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-06-19 12:29:04 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-06-19 12:52:57 -0400
commit919266dbc630173ab4fe2067c323468e5e59989b (patch)
treeb563540f4c3c0cc3769fc13238925e116b282d57 /crawl-ref/source/godabil.cc
parentb016ecab1895c928f22da2412e78215c4cf0b47b (diff)
downloadcrawl-ref-919266dbc630173ab4fe2067c323468e5e59989b.tar.gz
crawl-ref-919266dbc630173ab4fe2067c323468e5e59989b.zip
Rename functions (|amethyst).
Diffstat (limited to 'crawl-ref/source/godabil.cc')
-rw-r--r--crawl-ref/source/godabil.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/godabil.cc b/crawl-ref/source/godabil.cc
index fd948667ff..d1da3e6d75 100644
--- a/crawl-ref/source/godabil.cc
+++ b/crawl-ref/source/godabil.cc
@@ -512,11 +512,11 @@ static int _zin_check_recite_to_single_monster(const monster *mon,
eligibility.init(0);
// Anti-chaos prayer: Hits things vulnerable to silver, or with chaotic spells/gods.
- eligibility[RECITE_CHAOTIC] = mon->chaos(true);
+ eligibility[RECITE_CHAOTIC] = mon->how_chaotic(true);
// Anti-impure prayer: Hits things that Zin hates in general.
// Don't look at the monster's god; that's what RECITE_HERETIC is for.
- eligibility[RECITE_IMPURE] = mon->unclean(false);
+ eligibility[RECITE_IMPURE] = mon->how_unclean(false);
// Sanity check: if a monster is 'really' natural, don't consider it impure.
if (mons_intel(mon) < I_NORMAL
&& (holiness == MH_NATURAL || holiness == MH_PLANT)