From 2ac4093ff9bbefed1ba51a3865507ac49a419bbd Mon Sep 17 00:00:00 2001 From: Vsevolod Kozlov Date: Sat, 7 Nov 2009 17:33:57 +0300 Subject: Replace mons_is_summoned with monsters::is_summoned. Signed-off-by: Charles Otto --- crawl-ref/source/spells1.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crawl-ref/source/spells1.cc') diff --git a/crawl-ref/source/spells1.cc b/crawl-ref/source/spells1.cc index 1b067f505c..835030f6eb 100644 --- a/crawl-ref/source/spells1.cc +++ b/crawl-ref/source/spells1.cc @@ -818,7 +818,7 @@ static int _healing_spell(int healed, bool divine_ability, did_something = true; const bool is_holy = mons_is_holy(monster); - const bool is_summoned = mons_is_summoned(monster); + const bool is_summoned = monster->is_summoned(); int pgain = 0; if (!is_holy && !is_summoned && you.piety < MAX_PIETY) -- cgit v1.2.3-54-g00ecf