summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 1a800e8a14..24bd9b5b81 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -641,7 +641,8 @@ static void _get_status_lights(std::vector<status_light>& out)
if (you.duration[DUR_REGENERATION])
{
int color = _dur_colour( BLUE, dur_expiring(DUR_REGENERATION) );
- out.push_back(status_light(color, "Regen"));
+ out.push_back(status_light(color,
+ you.attribute[ATTR_DIVINE_REGENERATION] ? "Regen MR+" : "Regen"));
}
if (you.duration[DUR_INSULATION])