summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
authorNicholas Feinberg <pleasingfung@gmail.com>2014-07-12 15:19:05 -0700
committerNicholas Feinberg <pleasingfung@gmail.com>2014-07-13 00:33:57 -0700
commit8dcdaa9893530b44951e4d107a37a3046da3e276 (patch)
tree9148b48f7a34de92af72cbc1aeb66ba4fe857077 /crawl-ref/source/describe.cc
parent37bb87b74313120c6e8001c0243e86e4f18df3fe (diff)
downloadcrawl-ref-8dcdaa9893530b44951e4d107a37a3046da3e276.tar.gz
crawl-ref-8dcdaa9893530b44951e4d107a37a3046da3e276.zip
Describe launchers' handedness
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc4
1 files changed, 1 insertions, 3 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index ab0cf44777..6f848ba368 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -1041,7 +1041,6 @@ static string _describe_weapon(const item_def &item, bool verbose)
}
}
- const bool launcher = is_range_weapon(item);
if (verbose)
{
description += "\n\nThis weapon falls into the";
@@ -1053,8 +1052,7 @@ static string _describe_weapon(const item_def &item, bool verbose)
make_stringf(" '%s' category. ",
skill == SK_FIGHTING ? "buggy" : skill_name(skill));
- if (!launcher)
- description += _handedness_string(item);
+ description += _handedness_string(item);
if (!you.could_wield(item, true))
description += "\nIt is too large for you to wield.";