summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-03 14:01:14 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2007-09-03 14:01:14 +0000
commit45f61ca03550225623a8fa468966b6ab123a63e7 (patch)
tree591b44912aca8ecf5d146bb107f22b208ac8f6a2 /crawl-ref/source/output.cc
parent22e5db9d1ec1a8119185f3806387519195497b1c (diff)
downloadcrawl-ref-45f61ca03550225623a8fa468966b6ab123a63e7.tar.gz
crawl-ref-45f61ca03550225623a8fa468966b6ab123a63e7.zip
A few small changes:
- KoGl don't start with throwing nets as they can't really use them; currently no replacement. (bug 1786889) - fire_items_start defaults to 'c' - potion of resistance also grants poison resistance git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@2048 c06c8d41-db1a-0410-9941-cceddc491573
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;