summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/describe.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/describe.cc')
-rw-r--r--crawl-ref/source/describe.cc5
1 files changed, 1 insertions, 4 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 482d467f2c..2185279562 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -914,11 +914,8 @@ static std::string _describe_weapon(const item_def &item, bool verbose)
description += ", and it is better for the dexterous";
description += ".";
}
- if (you.body_size(PSIZE_BODY) < SIZE_MEDIUM
- && !check_weapon_wieldable_size(item, you.body_size(PSIZE_BODY)))
- {
+ if (!you.could_wield(item, true))
description += "$It is too large for you to wield.";
- }
}
if (verbose)