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.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/crawl-ref/source/describe.cc b/crawl-ref/source/describe.cc
index 70d0f3a711..a451e69122 100644
--- a/crawl-ref/source/describe.cc
+++ b/crawl-ref/source/describe.cc
@@ -802,7 +802,7 @@ void append_weapon_stats(std::string &description, const item_def &item)
// describe_weapon
//
//---------------------------------------------------------------
-static std::string _describe_weapon( const item_def &item, bool verbose)
+static std::string _describe_weapon(const item_def &item, bool verbose)
{
std::string description;
@@ -1142,7 +1142,7 @@ static std::string _describe_ammo( const item_def &item )
}
bool can_launch = has_launcher(item);
- bool can_throw = is_throwable(item);
+ bool can_throw = is_throwable(item, you.body_size(), true);
bool need_new_line = true;
if (item.special && item_type_known(item))