From 04183cce80ddb8772f2cf386f78d49eddcecc106 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Thu, 15 May 2025 18:06:15 +0200 Subject: [PATCH] Remove unnecessary duplicate group table --- stackgroup.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/stackgroup.lua b/stackgroup.lua index ff3380b..28eed90 100644 --- a/stackgroup.lua +++ b/stackgroup.lua @@ -83,7 +83,6 @@ local groupEntryMetatable = { function stackgroup.fromChests(...) local chests = { ... } local groups = {} - local outGroups = {} for chestIndex,chest in ipairs(chests) do for slotKey,slot in pairs(chest.slots) do @@ -111,7 +110,7 @@ function stackgroup.fromChests(...) end end - return outGroups + return groups end return stackgroup \ No newline at end of file