diff options
author | Bardur Arantsson <bardur@scientician.net> | 2012-04-07 14:50:36 +0200 |
---|---|---|
committer | Bardur Arantsson <bardur@scientician.net> | 2012-04-07 15:28:27 +0200 |
commit | a01f15e08da3b2e0e326b2a94100e17962136741 (patch) | |
tree | fa07a987e816cc752f909b689e2118f6c963c3b3 /src/files.c | |
parent | 41b6617e992d3fedda4c0a93ddd0fa4ad834a2ae (diff) |
Lua: Refactor all the corruption code into C
Diffstat (limited to 'src/files.c')
-rw-r--r-- | src/files.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/files.c b/src/files.c index 56e57975..96ee66a9 100644 --- a/src/files.c +++ b/src/files.c @@ -2736,11 +2736,7 @@ errr file_character(cptr name, bool_ full) file_character_print_grid(fff, FALSE, FALSE); /* Dump corruptions */ - if (got_corruptions()) - { - fprintf(fff, "\n Corruption list:\n"); - dump_corruptions(fff, FALSE); - } + dump_corruptions(fff, FALSE, TRUE); /* Dump skills */ dump_skills(fff); |