summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/fight.cc')
-rw-r--r--crawl-ref/source/fight.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 16a1cb685c..5f8ed20af7 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -712,6 +712,9 @@ static bool _vamp_wants_blood_from_monster(const monsters *mon)
if (you.hunger_state == HS_ENGORGED)
return (false);
+ if (mons_is_summoned(mon))
+ return (false);
+
if (!mons_has_blood(mon->type))
return (false);