From 8e963b9a919b5aa649fe395a30de9ca89bbd7c38 Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Wed, 25 Sep 2024 11:22:03 +0000 Subject: [PATCH] Always reload slot for insertions for now --- items.lua | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/items.lua b/items.lua index ba1ea42..8d69a73 100644 --- a/items.lua +++ b/items.lua @@ -67,6 +67,7 @@ function Cache.makeCache(cacheLoader) end if entry == nil then + print("Found populated chest: "..name) entry = scanChest(chest) end entry.index = name @@ -248,11 +249,7 @@ function Cache:insertStack(nodeSlot) if not result then print("Slot insert error for chest \""..slot.chest.."\"! Make sure it's still attached to the controller: "..change) else - if change == slot.count then - self:reloadSlot(slot.chest, slot.slot) - else - slot.count = slot.count - change - end + self:reloadSlot(slot.chest, slot.slot) count = count + change end end