diff --git a/storage/init.lua b/storage/init.lua index 37d092f..3d977fc 100644 --- a/storage/init.lua +++ b/storage/init.lua @@ -92,7 +92,7 @@ function Storage:findInsertTargets(sourceStack) local result = self:find(function(stack) return sourceStack:canTransfer(stack) end) -- Insertion should prioritize filling populated stacks - table.sort(result, function(a, b) return a:getcount() > b:getCount() end) + table.sort(result, function(a, b) return a:getCount() > b:getCount() end) return result end @@ -102,7 +102,7 @@ function Storage:findExtractTargets(targetStack) local result = self:find(function(stack) return (not stack:isEmpty()) and stack:canTransfer(targetStack) end) -- Extraction should prioritize emptying populated stacks - table.sort(result, function(a, b) return a:getcount() < b:getCount() end) + table.sort(result, function(a, b) return a:getCount() < b:getCount() end) return result end