From 77af7893b728f2de4f75d880e7ec777c920cc462 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Tue, 8 Oct 2024 19:37:55 +0200 Subject: [PATCH] Fix spelling error --- storage/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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