summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/command.cc
diff options
context:
space:
mode:
authorVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-08 17:04:28 +0300
committerVsevolod Kozlov <zaba@thorium.homeunix.org>2009-11-08 17:04:28 +0300
commitfd202fad9649bbcbd879edf2baca6f907f373890 (patch)
tree671e7d14bce2523902b257331a395355a5746784 /crawl-ref/source/command.cc
parent28f6c800df6bc63658b9c79e803bf81ac282aa1d (diff)
downloadcrawl-ref-fd202fad9649bbcbd879edf2baca6f907f373890.tar.gz
crawl-ref-fd202fad9649bbcbd879edf2baca6f907f373890.zip
Replace uses of spelltype_name with spelltype_long_name.
Diffstat (limited to 'crawl-ref/source/command.cc')
-rw-r--r--crawl-ref/source/command.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/command.cc b/crawl-ref/source/command.cc
index 2dba6303a7..b4e365a41a 100644
--- a/crawl-ref/source/command.cc
+++ b/crawl-ref/source/command.cc
@@ -1219,7 +1219,7 @@ static bool _append_books(std::string &desc, item_def &item, std::string key)
if (already)
desc += "/" ;
- desc += spelltype_name( 1 << i );
+ desc += spelltype_long_name( 1 << i );
already = true;
}
}