Limit stack group transfer count
This commit is contained in:
parent
e05cc0594e
commit
a938ed6133
@ -141,6 +141,10 @@ function ItemGroup:transferTo(target, itemCount)
|
|||||||
local transferMax = math.min(itemCount or targetCap, targetCap, self:getItemCount())
|
local transferMax = math.min(itemCount or targetCap, targetCap, self:getItemCount())
|
||||||
local transfer = 0
|
local transfer = 0
|
||||||
for _,stack in targetGroup:_iterateStacks() do
|
for _,stack in targetGroup:_iterateStacks() do
|
||||||
|
if transfer == transferMax then
|
||||||
|
break
|
||||||
|
end
|
||||||
|
|
||||||
local targetCount = math.min(stack:getCount() + transferMax - transfer, stack:getMaxCount())
|
local targetCount = math.min(stack:getCount() + transferMax - transfer, stack:getMaxCount())
|
||||||
for _,from in self:_iterateStacks() do
|
for _,from in self:_iterateStacks() do
|
||||||
if stack:getCount() == targetCount then
|
if stack:getCount() == targetCount then
|
||||||
|
Loading…
x
Reference in New Issue
Block a user