summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/arena.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-06 19:20:53 +0300
committerRobert Vollmert <rvollmert@gmx.net>2009-11-06 17:29:06 +0100
commitf7274ebf7b56aecaebd2207582ce37879a47b697 (patch)
treed113384575cf10267a14cfec06d245b1bd01f641 /crawl-ref/source/arena.cc
parent298af9dfc8810cf44e808ac91c236a2c1df6b704 (diff)
downloadcrawl-ref-f7274ebf7b56aecaebd2207582ce37879a47b697.tar.gz
crawl-ref-f7274ebf7b56aecaebd2207582ce37879a47b697.zip
Remove mons_friendly_real and mons_wont_attack_real.
They were the same as non-_real functions. Signed-off-by: Robert Vollmert <rvollmert@gmx.net>
Diffstat (limited to 'crawl-ref/source/arena.cc')
-rw-r--r--crawl-ref/source/arena.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/arena.cc b/crawl-ref/source/arena.cc
index 91ee452b32..902407591f 100644
--- a/crawl-ref/source/arena.cc
+++ b/crawl-ref/source/arena.cc
@@ -145,7 +145,7 @@ namespace arena
if (!mon->alive())
continue;
- const bool friendly = mons_friendly_real(mon);
+ const bool friendly = mons_friendly(mon);
// Set target to the opposite faction's home base.
mon->target = friendly ? place_b : place_a;
}