Always reload slot for insertions for now

This commit is contained in:
Gabriel Tofvesson 2024-09-25 11:22:03 +00:00
parent 5ae460b308
commit 8e963b9a91

View File

@ -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