summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/spells3.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-01 14:04:16 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-01 14:04:16 +0000
commit78f52b9e5b8d8a5290e902e8558a435617536fde (patch)
tree9faa4cd61806a0090b6d76686755ba2abe049bbf /crawl-ref/source/spells3.cc
parent9e3b39e56bd9fa78be59e5acfd185589191303e9 (diff)
downloadcrawl-ref-78f52b9e5b8d8a5290e902e8558a435617536fde.tar.gz
crawl-ref-78f52b9e5b8d8a5290e902e8558a435617536fde.zip
Add more message tweaks.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6289 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/spells3.cc')
-rw-r--r--crawl-ref/source/spells3.cc16
1 files changed, 10 insertions, 6 deletions
diff --git a/crawl-ref/source/spells3.cc b/crawl-ref/source/spells3.cc
index 28dfc56204..9697dd3ebd 100644
--- a/crawl-ref/source/spells3.cc
+++ b/crawl-ref/source/spells3.cc
@@ -1618,7 +1618,7 @@ void decrease_sanctuary_radius()
if (you.running && is_sanctuary(you.x_pos, you.y_pos))
{
- mpr("The sanctuary starts shrinking.");
+ mpr("The sanctuary starts shrinking.", MSGCH_DURATION);
stop_running();
}
@@ -1645,7 +1645,7 @@ void decrease_sanctuary_radius()
{
env.map[env.sanctuary_pos.x][env.sanctuary_pos.y].property = FPROP_NONE;
if (see_grid(coord_def(env.sanctuary_pos.x,env.sanctuary_pos.y)))
- mpr("The sanctuary disappears.");
+ mpr("The sanctuary disappears.", MSGCH_DURATION);
}
}
@@ -1757,11 +1757,15 @@ bool cast_sanctuary(const int power)
mpr("The monsters scatter in all directions!");
if (cloud_count == 1)
- mprf(MSGCH_GOD, "By Zin's power, the foul cloud within the "
- " sanctuary is swept away.");
+ {
+ mpr("By Zin's power, the foul cloud within the sanctuary is "
+ "swept away.", MSGCH_GOD);
+ }
else if (cloud_count > 1)
- mprf(MSGCH_GOD, "By Zin's power, all foul fumes within the "
- " sanctuary are swept away.");
+ {
+ mpr("By Zin's power, all foul fumes within the sanctuary are "
+ "swept away.", MSGCH_GOD);
+ }
return (true);
}