summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/chardump.cc')
-rw-r--r--crawl-ref/source/chardump.cc18
1 files changed, 2 insertions, 16 deletions
diff --git a/crawl-ref/source/chardump.cc b/crawl-ref/source/chardump.cc
index 4bb87f04e5..e8b028f0c3 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -980,24 +980,10 @@ static void sdump_mutations(const std::string &, std::string & text)
if (xz > 0)
{
- text += "";
text += "\n";
- text += " Mutations & Other Weirdness";
- text += "\n";
-
- for (int j = 0; j < 100; j++)
- {
- if (you.mutation[j])
- {
- if (you.demon_pow[j] > 0)
- text += "* ";
-
- text += mutation_name(j);
- text += "\n";
- }
- }
+ text += describe_mutations();
+ text += "\n\n";
}
- text += "\n\n";
} // end dump_mutations()
// ========================================================================