From e151d570d61938bd6f2addf014d1c9bb2fcb3aef Mon Sep 17 00:00:00 2001 From: dolorous Date: Sun, 15 Mar 2009 05:19:36 +0000 Subject: 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 --- crawl-ref/source/spells2.cc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'crawl-ref/source/spells2.cc') 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); } } -- cgit v1.2.3-54-g00ecf