summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-23 20:54:24 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-02-23 20:54:24 +0000
commit08af592fcdfc5f215a97dfca4f5bacfe5333e3e6 (patch)
tree1305b34cffe14f4aa12d381d3df62ff20c95c16f /crawl-ref/source/output.cc
parente0b41052eae0026d4e09adc8f586a912df6ff19d (diff)
downloadcrawl-ref-08af592fcdfc5f215a97dfca4f5bacfe5333e3e6.tar.gz
crawl-ref-08af592fcdfc5f215a97dfca4f5bacfe5333e3e6.zip
Properly display the gourmand and slow healing mutations on the "%"
screen. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9184 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 5e64e8e7e4..9e2a1c8f25 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2673,6 +2673,9 @@ std::string _status_mut_abilities()
snprintf(info, INFO_SIZE, "saprovore %d", level);
current = info;
break;
+ case MUT_GOURMAND:
+ current = "gourmand";
+ break;
case MUT_CARNIVOROUS:
snprintf(info, INFO_SIZE, "carnivore %d", level);
current = info;
@@ -2696,6 +2699,10 @@ std::string _status_mut_abilities()
snprintf(info, INFO_SIZE, "regeneration %d", level);
current = info;
break;
+ case MUT_SLOW_HEALING:
+ snprintf(info, INFO_SIZE, "slow healing %d", level);
+ current = info;
+ break;
case MUT_FAST_METABOLISM:
snprintf(info, INFO_SIZE, "fast metabolism %d", level);
current = info;