summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/chardump.cc
diff options
context:
space:
mode:
authorharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-07 14:05:46 +0000
committerharanp <haranp@c06c8d41-db1a-0410-9941-cceddc491573>2007-05-07 14:05:46 +0000
commitcfda69d1ae94baf5e41b318ffd00dd227f8ddf69 (patch)
tree8bf2606134d56b1a58e1206d2d7331fe3a0518db /crawl-ref/source/chardump.cc
parentfa0e36a06cd154cc1d529dd7645ae47fab8af000 (diff)
downloadcrawl-ref-cfda69d1ae94baf5e41b318ffd00dd227f8ddf69.tar.gz
crawl-ref-cfda69d1ae94baf5e41b318ffd00dd227f8ddf69.zip
Spell power strings now reflect power caps.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@1413 c06c8d41-db1a-0410-9941-cceddc491573
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 2a78fd6e41..a5a6b497c5 100644
--- a/crawl-ref/source/chardump.cc
+++ b/crawl-ref/source/chardump.cc
@@ -874,7 +874,7 @@ static void sdump_spells(const std::string &, std::string & text)
for (int i = spell_line.length(); i < 41; ++i )
spell_line += ' ';
- spell_line += spell_power_to_string(calc_spell_power(spell,true));
+ spell_line += spell_power_string(spell);
for (int i = spell_line.length(); i < 56; ++i )
spell_line += ' ';