summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/fight.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-29 13:20:43 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-12-29 13:20:43 +0000
commitf65b0e512e9ebabc93aa35224228a39e1c3d5a88 (patch)
tree98338df21fb6cf3789ff6810c04716cb2154b619 /crawl-ref/source/fight.cc
parent25c2c3a8d8a270e3d0f06791942d62ef9aeaf5b3 (diff)
downloadcrawl-ref-f65b0e512e9ebabc93aa35224228a39e1c3d5a88.tar.gz
crawl-ref-f65b0e512e9ebabc93aa35224228a39e1c3d5a88.zip
Vampires may no longer draw blood from summoned monsters.
Remove Vampires being "in touch with the powers of death". Only print Mummies death boost message from xp >= 13 where it actually appears. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8015 c06c8d41-db1a-0410-9941-cceddc491573
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);