summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/output.cc
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-09 00:22:23 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-07-09 00:22:23 +0000
commit81ab2d0292165a7d947f5aad9e9bb671077661fb (patch)
tree8b30ac8942164a92f79b64358702406d63b3e47e /crawl-ref/source/output.cc
parent525a9c680e438094ee6f8b1178d4bc8505225369 (diff)
downloadcrawl-ref-81ab2d0292165a7d947f5aad9e9bb671077661fb.tar.gz
crawl-ref-81ab2d0292165a7d947f5aad9e9bb671077661fb.zip
Fix [2818619]: Clarify display of multiple levels of the "spit poison"
mutation. git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@10124 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/output.cc')
-rw-r--r--crawl-ref/source/output.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/output.cc b/crawl-ref/source/output.cc
index cd3e925a49..1eb6726ae1 100644
--- a/crawl-ref/source/output.cc
+++ b/crawl-ref/source/output.cc
@@ -2840,7 +2840,8 @@ std::string _status_mut_abilities()
current = info;
break;
case MUT_SPIT_POISON:
- current = "spit poison";
+ snprintf(info, INFO_SIZE, "spit poison %d", level);
+ current = info;
break;
case MUT_MAPPING:
snprintf(info, INFO_SIZE, "sense surroundings %d", level);