summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/butcher.cc
diff options
context:
space:
mode:
Diffstat (limited to 'crawl-ref/source/butcher.cc')
-rw-r--r--crawl-ref/source/butcher.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/crawl-ref/source/butcher.cc b/crawl-ref/source/butcher.cc
index cd3f212830..fa55bf47db 100644
--- a/crawl-ref/source/butcher.cc
+++ b/crawl-ref/source/butcher.cc
@@ -48,7 +48,9 @@ static void _create_monster_hide(const item_def corpse)
die("an unknown hide drop");
}
- int o = items(0, OBJ_ARMOUR, type, true, 0, 0, 0, -1, true);
+ int o = items(0, OBJ_ARMOUR, type, true, 0);
+ squash_plusses(o);
+
if (o == NON_ITEM)
return;
item_def& item = mitm[o];