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.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/fight.cc b/crawl-ref/source/fight.cc
index 21fcd0613c..c0973cad93 100644
--- a/crawl-ref/source/fight.cc
+++ b/crawl-ref/source/fight.cc
@@ -3707,7 +3707,7 @@ void melee_attack::mons_apply_attack_flavour(const mon_attack_def &attk)
// Disallow draining of summoned monsters since they can't bleed.
// XXX: Is this too harsh?
- if (mons_is_summoned(def))
+ if (defender->atype() == ACT_MONSTER && mons_is_summoned(def))
break;
if (x_chance_in_y(defender->res_negative_energy(), 3))