summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-15 16:35:07 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-15 16:35:07 +0000
commit3446563c1c1d6d77a4f39b785be39e167c02647c (patch)
treeedc540bc14891a398f8bf05a6df890ad9167c00e /crawl-ref/source/output.cc
parent0be746e8fe67b689a7158c703571009f9bd2facb (diff)
downloadcrawl-ref-3446563c1c1d6d77a4f39b785be39e167c02647c.tar.gz
crawl-ref-3446563c1c1d6d77a4f39b785be39e167c02647c.zip
Display divine robustness in the "@" and "%" screens.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5057 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index a10408e8f8..6cd49eb1c2 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2122,6 +2122,7 @@ std::string _status_mut_abilities()
// how exactly did you get to show the status?
if (you.duration[DUR_PARALYSIS])
text += "paralysed, ";
+
if (you.duration[DUR_SLEEP])
text += "sleeping, ";
@@ -2131,6 +2132,9 @@ std::string _status_mut_abilities()
if (you.duration[DUR_MIGHT])
text += "mighty, ";
+ if (you.duration[DUR_DIVINE_ROBUSTNESS])
+ text += "divinely robust, ";
+
if (you.duration[DUR_BERSERKER])
text += "berserking, ";