summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-07-29 13:01:53 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-07-29 13:01:53 +0200
commit7282fce25d2e92c6a9ee1de2d3a17250db95e963 (patch)
tree2e292668b65b4364bc5a27b53bbeaa474b4e504c /crawl-ref/source/chardump.cc
parent24941032378c80cd0230e7810642e01980ae9055 (diff)
downloadcrawl-ref-7282fce25d2e92c6a9ee1de2d3a17250db95e963.tar.gz
crawl-ref-7282fce25d2e92c6a9ee1de2d3a17250db95e963.zip
Don't center the section header for mutation list in character dumps.
No other section is centered.
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index 88760e272e..bbdaa03de0 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -1318,7 +1318,7 @@ static void _sdump_mutations(dump_params &par)
if (how_mutated(true, false))
{
text += "\n";
- text += (formatted_string::parse_string(describe_mutations()));
+ text += (formatted_string::parse_string(describe_mutations(false)));
text += "\n\n";
}
}