summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-21 20:26:29 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-01-21 20:26:29 +0000
commit675e240cda53b6ce168046c08c13719d537e0d94 (patch)
treeb260742afcee1081338b25974b4a918414012f71 /crawl-ref/source/spl-cast.cc
parent75e1916d77752fa2800a3022891681041983efff (diff)
downloadcrawl-ref-675e240cda53b6ce168046c08c13719d537e0d94.tar.gz
crawl-ref-675e240cda53b6ce168046c08c13719d537e0d94.zip
Add another monster miscast message.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@8658 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index 5a9ab56145..c0c3f32501 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -3905,8 +3905,9 @@ void MiscastEffect::_necromancy(int severity)
case 0:
if (target->holiness() == MH_UNDEAD)
{
- // Monster messages needed.
- you_msg = "Something just walked over your grave. No, really!";
+ you_msg = "Something just walked over your grave. No, "
+ "really!";
+ mon_msg_seen = "@The_monster@ seems frightened for a moment."
do_msg();
}
else