summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-10 02:42:57 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-10 02:42:57 +0000
commitadd6db28b8d0163546df55245f7b321a5e31ce31 (patch)
tree94859639210ce1071eb99b55ed30c388775e4416 /crawl-ref
parentaf6c143561718ac7675acd8b5707a1d75644f577 (diff)
downloadcrawl-ref-add6db28b8d0163546df55245f7b321a5e31ce31.tar.gz
crawl-ref-add6db28b8d0163546df55245f7b321a5e31ce31.zip
Apply trunk r6470 to 0.4.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/branches/stone_soup-0.4@6471 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/acr.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 437ca0d192..225681b04b 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -2624,7 +2624,7 @@ static void _decrement_durations()
if (you.duration[DUR_DIVINE_SHIELD] > 1)
{
if (--you.duration[DUR_DIVINE_SHIELD] == 1)
- mpr("Your divine shield starts to fade.");
+ mpr("Your divine shield starts to fade.", MSGCH_DURATION);
}
if (you.duration[DUR_DIVINE_SHIELD] == 1 && !one_chance_in(3))
@@ -2633,7 +2633,7 @@ static void _decrement_durations()
if (--you.attribute[ATTR_DIVINE_SHIELD] == 0)
{
you.duration[DUR_DIVINE_SHIELD] = 0;
- mpr("Your divine shield fades completely.");
+ mpr("Your divine shield fades completely.", MSGCH_DURATION);
}
}
}