summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/food.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/food.cc')
-rw-r--r--crawl-ref/source/food.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/crawl-ref/source/food.cc b/crawl-ref/source/food.cc
index a3cf2ee638..075341682f 100644
--- a/crawl-ref/source/food.cc
+++ b/crawl-ref/source/food.cc
@@ -222,8 +222,9 @@ static bool _find_butchering_implement(int &butcher_tool)
&& can_cut_meat( tool )
&& can_wield( &tool )
// Don't even suggest autocursing items.
+ // Note that unknown autocursing is OK.
&& (!is_random_artefact(tool)
- || !randart_known_wpn_property(tool, RAP_CURSED)))
+ || (randart_known_wpn_property(tool, RAP_CURSED) <= 0)))
{
if (Options.easy_butcher
&& item_known_uncursed(tool)