summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorStefan O'Rear <stefanor@cox.net>2009-11-11 16:55:59 -0800
committerStefan O'Rear <stefanor@cox.net>2009-11-11 16:56:12 -0800
commitece54abd395914d1c95b27e0fe38e4bccd258ca0 (patch)
tree6e8a5493bde3f4722b15c3fd3e57ec3c58db6fa0 /crawl-ref/source/describe.cc
parente609fa1634d692bf4b8c925c084b4f3489e70ea0 (diff)
downloadcrawl-ref-ece54abd395914d1c95b27e0fe38e4bccd258ca0.tar.gz
crawl-ref-ece54abd395914d1c95b27e0fe38e4bccd258ca0.zip
Swap accuracy and damage in weapon long descriptions (Twinge)
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index e1b40e14b7..3c2480652b 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -689,14 +689,14 @@ static std::string _describe_demon(const monsters &mons)
void append_weapon_stats(std::string &description, const item_def &item)
{
- description += "$Damage rating: ";
- _append_value(description, property( item, PWPN_DAMAGE ), false);
- description += " ";
-
- description += "Accuracy rating: ";
+ description += "$Accuracy rating: ";
_append_value(description, property( item, PWPN_HIT ), true);
description += " ";
+ description += "Damage rating: ";
+ _append_value(description, property( item, PWPN_DAMAGE ), false);
+ description += " ";
+
description += "Base attack delay: ";
_append_value(description, property( item, PWPN_SPEED ) * 10, false);
description += "%";