From c516f02f0a1911429e0ef7d3d3c1e81587f612b2 Mon Sep 17 00:00:00 2001 From: dolorous Date: Wed, 19 Mar 2008 02:40:35 +0000 Subject: Also use is_orcish_follower() when recalling your orcish followers. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@3716 c06c8d41-db1a-0410-9941-cceddc491573 --- crawl-ref/source/spells3.cc | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'crawl-ref/source/spells3.cc') diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc index ff63ac62c3..698f2e7e3d 100644 --- a/crawl-ref/source/spells3.cc +++ b/crawl-ref/source/spells3.cc @@ -1149,11 +1149,7 @@ bool recall(char type_recalled) } else if (type_recalled == 2) // Beogh { - if (mons_species(monster->type) != MONS_ORC) - continue; - - // does not include charmed orcs - if (monster->attitude != ATT_FRIENDLY) + if (!is_orcish_follower(monster)) continue; } -- cgit v1.2.3-54-g00ecf