summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/view.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/view.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/view.cc')
-rw-r--r--crawl-ref/source/view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/view.cc b/crawl-ref/source/view.cc
index 99a7b0cb17..a97911d0ba 100644
--- a/crawl-ref/source/view.cc
+++ b/crawl-ref/source/view.cc
@@ -547,7 +547,7 @@ bool check_awaken(monsters* monster)
&& you.can_see(monster) // to avoid leaking information
&& you.burden_state == BS_UNENCUMBERED
&& !you.attribute[ATTR_SHADOWS]
- && !mons_wont_attack(monster)
+ && !monster->wont_attack()
&& !mons_class_flag(monster->type, M_NO_EXP_GAIN)
// If invisible, training happens much more rarely.
&& (!unnatural_stealthy && one_chance_in(25) || one_chance_in(100)))
@@ -1010,7 +1010,7 @@ bool mon_enemies_around(const monsters *monster)
// we don't have one.
return (false);
}
- else if (mons_wont_attack(monster))
+ else if (monster->wont_attack())
{
// Additionally, if an ally is nearby and *you* have a foe,
// consider it as the ally's enemy too.