summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
authorShmuale Mark <shm.mark@gmail.com>2014-07-03 11:00:01 -0400
committerShmuale Mark <shm.mark@gmail.com>2014-07-03 11:00:01 -0400
commit52da494bbcaee71c74bf962e8ed96d8e39535e04 (patch)
tree9c7af654f30f0669e9e936f18aedd9b8217c04d5 /crawl-ref/source/chardump.cc
parentf9fe885eddd3610f9c236023d4a24797df9439f9 (diff)
downloadcrawl-ref-52da494bbcaee71c74bf962e8ed96d8e39535e04.tar.gz
crawl-ref-52da494bbcaee71c74bf962e8ed96d8e39535e04.zip
Fold mutation_def::wizname into ::short_desc.
In only a few cases were the strings different, and in even fewer were they significantly so. In general, I used the short_desc for the combined one, since someone running wizmode can presumably look at mutation-data.h, except that "large and strong wings" got changed to "big wings", and "life protection" to "negative energy resistance".
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index 740f4653df..f14d0402a3 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -272,7 +272,8 @@ static void _sdump_transform(dump_params &par)
else
{
text += make_stringf("You %s grown temporary %s.",
- par.se ? "had" : "have", appendage_name());
+ par.se ? "had" : "have",
+ mutation_name((mutation_type) you.attribute[ATTR_APPENDAGE]));
}
break;
case TRAN_FUNGUS: