summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2010-01-02 23:53:15 -0800
committerStefan O'Rear <stefanor@cox.net>2010-01-02 23:53:15 -0800
commit45257acf3e73631c66d66ebc9ed3e4ac88951a37 (patch)
treef8c465d36a5f019349d18b817bce746ece6efff3 /crawl-ref/source/describe.cc
parentecb85a04028949511fb528ca262eab74093c645f (diff)
downloadcrawl-ref-45257acf3e73631c66d66ebc9ed3e4ac88951a37.tar.gz
crawl-ref-45257acf3e73631c66d66ebc9ed3e4ac88951a37.zip
Rods function in melee as a +x/+x club (#300)
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 95473fc4a1..8f06b1f582 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1923,6 +1923,10 @@ std::string get_item_description( const item_def &item, bool verbose,
else
description << desc;
}
+ std::string stats = "";
+ append_weapon_stats(stats, item);
+ description << stats;
+ description << "$$It falls into the 'Maces & Flails' category.";
}
else
{