summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells2.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-15 05:19:36 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-03-15 05:19:36 +0000
commite151d570d61938bd6f2addf014d1c9bb2fcb3aef (patch)
tree64b03f0d7ab6d4ee74aff6c4aceecbc16fcbb209 /crawl-ref/source/spells2.cc
parentf7086e275fe7d45720aedfe71cbe5e48c0af9fbe (diff)
downloadcrawl-ref-e151d570d61938bd6f2addf014d1c9bb2fcb3aef.tar.gz
crawl-ref-e151d570d61938bd6f2addf014d1c9bb2fcb3aef.zip
When casting Vampiric Draining, don't mention the monster you're
draining. First, it's consistent with Yred's Drain Life; second, it should generally be obvious from the wounding message which monster you're draining; and third, it avoids the message "You feel life coursing from DEAD MONSTER into your body!" if the damage the monster takes before its life force courses into you kills it. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9491 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells2.cc')
-rw-r--r--crawl-ref/source/spells2.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/crawl-ref/source/spells2.cc b/crawl-ref/source/spells2.cc
index 7aa49c2a55..9d8070e64c 100644
--- a/crawl-ref/source/spells2.cc
+++ b/crawl-ref/source/spells2.cc
@@ -781,8 +781,7 @@ bool vampiric_drain(int pow, const dist &vmove)
if (hp_gain)
{
- mprf("You feel life coursing from %s into your body!",
- monster->name(DESC_NOCAP_THE).c_str());
+ mpr("You feel life coursing into your body.");
inc_hp(hp_gain, false);
}
}