Use abstractions in ItemStack

This commit is contained in:
Gabriel Tofvesson 2024-10-04 15:02:57 +02:00
parent 1482437161
commit 55ec42bffb

View File

@ -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