summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-miscast.cc
diff options
context:
space:
mode:
authordrachereborn <kerwin.khu@gmail.com>2014-03-22 19:02:10 +0100
committerChris Campbell <chriscampbell89@gmail.com>2014-04-29 02:28:41 +0100
commit4ff5c5a7f837f0989b64c0f2d6f8124c751750bf (patch)
tree072ffb0470ca9f04efa218cc8cdb28fa225156b7 /crawl-ref/source/spl-miscast.cc
parent0c658ddcb893c9d94c298733e0727e03977eb1f8 (diff)
downloadcrawl-ref-4ff5c5a7f837f0989b64c0f2d6f8124c751750bf.tar.gz
crawl-ref-4ff5c5a7f837f0989b64c0f2d6f8124c751750bf.zip
Improved messages when Sif or Kiku prevents miscasts. Also improved descriptions of Sif and Kiku miscast protection.
Sif prevents both the miscast and associated contam ("effects of miscast") Kiku prevents Necro miscasts and also death curses
Diffstat (limited to 'crawl-ref/source/spl-miscast.cc')
-rw-r--r--crawl-ref/source/spl-miscast.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/spl-miscast.cc b/crawl-ref/source/spl-miscast.cc
index 8f3c49c664..68ed0a7c88 100644
--- a/crawl-ref/source/spl-miscast.cc
+++ b/crawl-ref/source/spl-miscast.cc
@@ -1642,7 +1642,8 @@ void MiscastEffect::_necromancy(int severity)
// An actual necromancy miscast.
if (x_chance_in_y(you.piety, piety_breakpoint(5)))
{
- canned_msg(MSG_NOTHING_HAPPENS);
+ simple_god_message(" protects you from your miscast "
+ "necromantic spell!");
return;
}
}