summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
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);
}
}
}