summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells1.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-09 14:33:06 +0300
committerVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-09 14:58:19 +0300
commit9338556ebf846bbc4176134e3846ef6699e8434b (patch)
tree2107949166730a765e3e1e98a66778f112fb5e6a /crawl-ref/source/spells1.cc
parentbf03515e22d610f81afa6d4153afc383f7331363 (diff)
downloadcrawl-ref-9338556ebf846bbc4176134e3846ef6699e8434b.tar.gz
crawl-ref-9338556ebf846bbc4176134e3846ef6699e8434b.zip
Replace mons_wont_attack with monsters::wont_attack.
Diffstat (limited to 'crawl-ref/source/spells1.cc')
-rw-r--r--crawl-ref/source/spells1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc
index 4cb64dcd99..b3222f3817 100644
--- a/crawl-ref/source/spells1.cc
+++ b/crawl-ref/source/spells1.cc
@@ -688,7 +688,7 @@ void big_cloud(cloud_type cl_type, kill_category whose, killer_type killer,
static bool _mons_hostile(const monsters *mon)
{
// Needs to be done this way because of friendly/neutral enchantments.
- return (!mons_wont_attack(mon) && !mon->neutral());
+ return (!mon->wont_attack() && !mon->neutral());
}
static bool _can_pacify_monster(const monsters *mon, const int healed)
@@ -1138,7 +1138,7 @@ void abjuration(int pow)
if (monster->type == MONS_NO_MONSTER || !mons_near(monster))
continue;
- if (mons_wont_attack(monster))
+ if (monster->wont_attack())
continue;
int duration;