From 7a869a2b8fa07f329376019d4846455ba7580939 Mon Sep 17 00:00:00 2001 From: Vsevolod Kozlov Date: Sat, 7 Nov 2009 13:05:43 +0300 Subject: Replace mons_strict_neutral with monsters::strict_neutral. Signed-off-by: Jude Brown --- crawl-ref/source/monster.cc | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'crawl-ref/source/monster.cc') diff --git a/crawl-ref/source/monster.cc b/crawl-ref/source/monster.cc index 2178e35576..dda40f100a 100644 --- a/crawl-ref/source/monster.cc +++ b/crawl-ref/source/monster.cc @@ -2844,6 +2844,11 @@ bool monsters::good_neutral() const return (attitude == ATT_GOOD_NEUTRAL); } +bool monsters::strict_neutral() const +{ + return (attitude == ATT_STRICT_NEUTRAL); +} + int monsters::shield_bonus() const { const item_def *shld = const_cast(this)->shield(); -- cgit v1.2.3-54-g00ecf