Fix call to getCount

This commit is contained in:
Gabriel Tofvesson 2024-10-12 07:42:24 +02:00
parent 7fa0861084
commit 9e2e36bcd9

View File

@ -141,7 +141,7 @@ function ItemGroup:transferTo(target, itemCount)
local transferMax = math.min(itemCount or targetCap, targetCap, self:getItemCount())
local transfer = 0
for _,stack in targetGroup:_iterateStacks() do
local targetCount = math.min(target:getCount() + transferMax - transfer, stack:getMaxCount())
local targetCount = math.min(stack:getCount() + transferMax - transfer, stack:getMaxCount())
for _,from in self:_iterateStacks() do
if stack:getCount() == targetCount then
goto continue