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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index 1ceee2784f..bf7a6ea221 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -1980,14 +1980,14 @@ std::string status_mut_abilities()
case MUT_FRAIL:
if (have_any)
text += ", ";
- snprintf(info, INFO_SIZE, "-%d hp", level*10);
+ snprintf(info, INFO_SIZE, "-%d%% hp", level*10);
text += info;
have_any = true;
break;
case MUT_ROBUST:
if (have_any)
text += ", ";
- snprintf(info, INFO_SIZE, "+%d hp", level*10);
+ snprintf(info, INFO_SIZE, "+%d hp%%", level*10);
text += info;
have_any = true;
break;