summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/butcher.cc
diff options
context:
space:
mode:
authorreaverb <reaverb.Crawl@gmail.com>2014-08-08 03:57:55 -0400
committerreaverb <reaverb.Crawl@gmail.com>2014-08-08 15:00:27 -0400
commit959592d6485a5aec6e0fb404f31edce8dd690e11 (patch)
treea4c97b5ea792cc5720bbb75661653af2f2efd08c /crawl-ref/source/butcher.cc
parent8ce947975fa9f9c0b3d8575ab43ff042c5d6b872 (diff)
downloadcrawl-ref-959592d6485a5aec6e0fb404f31edce8dd690e11.tar.gz
crawl-ref-959592d6485a5aec6e0fb404f31edce8dd690e11.zip
Remove 2 more parameters from items()
They were only used in one place, and the relevant code was moved to that one place in the previous commit.
Diffstat (limited to 'crawl-ref/source/butcher.cc')
-rw-r--r--crawl-ref/source/butcher.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/butcher.cc b/crawl-ref/source/butcher.cc
index fa55bf47db..8e0d548e60 100644
--- a/crawl-ref/source/butcher.cc
+++ b/crawl-ref/source/butcher.cc
@@ -48,7 +48,7 @@ static void _create_monster_hide(const item_def corpse)
die("an unknown hide drop");
}
- int o = items(0, OBJ_ARMOUR, type, true, 0);
+ int o = items(false, OBJ_ARMOUR, type, 0);
squash_plusses(o);
if (o == NON_ITEM)