From 55ec42bffbb44e872cb5656517957e3c90754b21 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 4 Oct 2024 15:02:57 +0200 Subject: [PATCH] Use abstractions in ItemStack --- storage/itemstack.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/storage/itemstack.lua b/storage/itemstack.lua index fc6b73b..04d1981 100644 --- a/storage/itemstack.lua +++ b/storage/itemstack.lua @@ -154,14 +154,14 @@ function ItemStack:_modify(countDelta, stack) end function ItemStack:transferTo(target, count) - local cap = math.min(count, target.maxCount - target.getCount(), self:getCount()) + local cap = math.min(count or self:getCount(), target:getMaxCount() - target:getCount(), self:getCount()) -- If we can't transfer any data, then if cap == 0 then return count == 0, 0 end - local result, xfer = pcall(self.inv.pushItems, peripheral.getName(target.inv), self.slot, cap, target.slot) + local result, xfer = pcall(self:getInventory().pushItems, peripheral.getName(target:getInventory()), self:getSlot(), cap, target:getSlot()) if not result then return false, xfer