summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index ef67f7ba45..e068bda7f8 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -956,6 +956,10 @@ bool recall(char type_recalled)
{
if (mons_species(monster->type) != MONS_ORC)
continue;
+
+ // does not include charmed orcs
+ if (monster->attitude != ATT_FRIENDLY)
+ continue;
}
if (empty_surrounds(you.x_pos, you.y_pos, DNGN_FLOOR, 3, false, empty))