summaryrefslogtreecommitdiffstats
path: root/crawl-ref
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-15 18:12:43 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-15 18:12:43 +0000
commit0a43d21f2b8c9bfbb55f8e897620b8395e4e6985 (patch)
tree1dc4f250a08d6ce523939e44e518f8954f706ac7 /crawl-ref
parenteafc3434eca5fae43479daf18db934a28fe2f633 (diff)
downloadcrawl-ref-0a43d21f2b8c9bfbb55f8e897620b8395e4e6985.tar.gz
crawl-ref-0a43d21f2b8c9bfbb55f8e897620b8395e4e6985.zip
Display divine stamina in the "@" and "%" screens, under "divine
fortification". git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5063 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref')
-rw-r--r--crawl-ref/source/output.cc3
-rw-r--r--crawl-ref/source/player.cc3
2 files changed, 6 insertions, 0 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 3309ea09a0..eafb714434 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2135,6 +2135,9 @@ std::string _status_mut_abilities()
if (you.duration[DUR_DIVINE_ROBUSTNESS])
text += "divinely robust, ";
+ if (you.duration[DUR_DIVINE_STAMINA])
+ text += "divinely fortified, ";
+
if (you.duration[DUR_BERSERKER])
text += "berserking, ";
diff --git a/crawl-ref/source/player.cc b/crawl-ref/source/player.cc
index d4719dd22b..d7c49328c8 100644
--- a/crawl-ref/source/player.cc
+++ b/crawl-ref/source/player.cc
@@ -3873,6 +3873,9 @@ void display_char_status()
if (you.duration[DUR_DIVINE_ROBUSTNESS])
mpr( "You are divinely robust." );
+ if (you.duration[DUR_DIVINE_STAMINA])
+ mpr( "You are divinely fortified." );
+
if (you.duration[DUR_BERSERKER])
mpr( "You are possessed by a berserker rage." );