summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/items.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/items.cc')
-rw-r--r--crawl-ref/source/items.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/items.cc b/crawl-ref/source/items.cc
index 3f5dfcf2e7..e5c356ba86 100644
--- a/crawl-ref/source/items.cc
+++ b/crawl-ref/source/items.cc
@@ -1983,7 +1983,7 @@ bool drop_item( int item_dropped, int quant_drop, bool try_offer )
if (item_dropped == you.equip[EQ_WEAPON]
&& quant_drop >= you.inv[item_dropped].quantity)
{
- if (!unwield_item())
+ if (!wield_weapon(true, PROMPT_GOT_SPECIAL))
return (false);
canned_msg( MSG_EMPTY_HANDED );
}