summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-mis.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-22 08:50:31 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-22 08:50:31 +0000
commit50d4d026d2cf6e6787e7060a6c76e9aaf8791d82 (patch)
tree6aece68b7511ccf309350606e6c65141de900b8c /crawl-ref/source/spl-mis.cc
parentc0f4acdb67ede717f9800f75205abf01c1b4a057 (diff)
downloadcrawl-ref-50d4d026d2cf6e6787e7060a6c76e9aaf8791d82.tar.gz
crawl-ref-50d4d026d2cf6e6787e7060a6c76e9aaf8791d82.zip
Call do_msg() in the same place for the other "engulfed in negative
energy" necromancy miscast. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8689 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-mis.cc')
-rw-r--r--crawl-ref/source/spl-mis.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-mis.cc b/crawl-ref/source/spl-mis.cc
index 539575a9c3..028d6ab93e 100644
--- a/crawl-ref/source/spl-mis.cc
+++ b/crawl-ref/source/spl-mis.cc
@@ -1748,11 +1748,11 @@ void MiscastEffect::_necromancy(int severity)
case 4:
you_msg = "You are engulfed in negative energy!";
mon_msg_seen = "@The_monster@ is engulfed in negative energy!";
- do_msg();
if (lethality_margin == 0 || you.experience > 0
|| !avoid_lethal(you.hp))
{
+ do_msg();
target->drain_exp(act_source);
break;
}