summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spl-cast.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 20:44:53 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-06-09 20:44:53 +0000
commit095ca5566f2414625524058640c55397be2a6cc9 (patch)
treef32ebc1a3024c87a51d7bd830ec14ac3b810f375 /crawl-ref/source/spl-cast.cc
parentfcb4fd4c0f5b7772a7a11ece3867b49cfc1cc9b1 (diff)
downloadcrawl-ref-095ca5566f2414625524058640c55397be2a6cc9.tar.gz
crawl-ref-095ca5566f2414625524058640c55397be2a6cc9.zip
Add more message tweaks.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5673 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spl-cast.cc')
-rw-r--r--crawl-ref/source/spl-cast.cc12
1 files changed, 12 insertions, 0 deletions
diff --git a/crawl-ref/source/spl-cast.cc b/crawl-ref/source/spl-cast.cc
index edd853f127..4d46e25641 100644
--- a/crawl-ref/source/spl-cast.cc
+++ b/crawl-ref/source/spl-cast.cc
@@ -2494,6 +2494,8 @@ static void _miscast_summoning(int severity, const char* cause)
{
mpr("Something appears in a flash of light!");
}
+ else
+ canned_msg(MSG_NOTHING_HAPPENS);
break;
}
break;
@@ -2514,6 +2516,8 @@ static void _miscast_summoning(int severity, const char* cause)
{
mpr("Something forms out of thin air!");
}
+ else
+ canned_msg(MSG_NOTHING_HAPPENS);
break;
case 3:
@@ -2555,6 +2559,8 @@ static void _miscast_summoning(int severity, const char* cause)
{
mpr("Something forms out of thin air.");
}
+ else
+ canned_msg(MSG_NOTHING_HAPPENS);
break;
case 1:
@@ -2564,6 +2570,8 @@ static void _miscast_summoning(int severity, const char* cause)
{
mpr("You sense a hostile presence.");
}
+ else
+ canned_msg(MSG_NOTHING_HAPPENS);
break;
case 2:
@@ -2852,6 +2860,8 @@ static void _miscast_necromancy(int severity, const char* cause)
{
mpr("Something reaches out for you...");
}
+ else
+ canned_msg(MSG_NOTHING_HAPPENS);
break;
case 5:
@@ -2861,6 +2871,8 @@ static void _miscast_necromancy(int severity, const char* cause)
{
mpr("Death has come for you...");
}
+ else
+ canned_msg(MSG_NOTHING_HAPPENS);
break;
}
break;