summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-10 02:42:12 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-07-10 02:42:12 +0000
commita1a9d5da918049d07b8f7b8d76672bf1e3470ce2 (patch)
treea94eece1f6a2f7908aef3b46ede7e411ce6d2031 /crawl-ref
parent9c5577d08a235b3faa539de3e372f37f03ecc2c1 (diff)
downloadcrawl-ref-a1a9d5da918049d07b8f7b8d76672bf1e3470ce2.tar.gz
crawl-ref-a1a9d5da918049d07b8f7b8d76672bf1e3470ce2.zip
Properly display all of TSO's divine shield fading messages in the
duration channel. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@6470 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);
}
}
}