From 5bd8785ed4f0df2c097a3d66df704019ee76a706 Mon Sep 17 00:00:00 2001 From: PhatPhuckDave Date: Sun, 30 Mar 2025 23:36:38 +0200 Subject: [PATCH] Add lil logs --- QuickStackToBag/Lua/Cyka/quickstack.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/QuickStackToBag/Lua/Cyka/quickstack.lua b/QuickStackToBag/Lua/Cyka/quickstack.lua index bef8f32..d816f0c 100644 --- a/QuickStackToBag/Lua/Cyka/quickstack.lua +++ b/QuickStackToBag/Lua/Cyka/quickstack.lua @@ -314,6 +314,7 @@ local function stackToCursor() end item = slot.slot.items[1] + MyModGlobal.debugPrint(string.format("Stacking all player items to %s", item.Prefab.Identifier.Value)) utils.enqueueAllPlayerItems({}, function(ititem) if ititem.Prefab.Identifier.Value == item.Prefab.Identifier.Value then if item == ititem then return false end @@ -359,6 +360,7 @@ local function stackAllToCursor() end item = slot.slot.items[1] + MyModGlobal.debugPrint(string.format("Stacking all items to %s", item.Prefab.Identifier.Value)) utils.enqueueAllOwnedItems({}, function(ititem) if ititem.Prefab.Identifier.Value == item.Prefab.Identifier.Value then if item == ititem then return false end