Add logging statement for item transfer bug

This commit is contained in:
Gabriel Tofvesson 2024-11-28 00:23:03 +01:00
parent a2f8f000db
commit 91583b1ca2

View File

@ -1,6 +1,7 @@
local Inventory = require("storage.inventory") local Inventory = require("storage.inventory")
local Sentinel = require("storage.sentinel") local Sentinel = require("storage.sentinel")
local Logger = require("logging").getGlobalLogger() local Logging = require("logging")
local Logger = Logging.getGlobalLogger()
local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK) local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
ItemStack.__index = ItemStack ItemStack.__index = ItemStack
@ -157,9 +158,6 @@ function ItemStack:hasChanged(listObj, thorough)
end end
function ItemStack:_modify(countDelta, stack) function ItemStack:_modify(countDelta, stack)
if countDelta == nil then
Logger:error("countDelta is nil!", stack)
end
local newCount = self:getCount() + countDelta local newCount = self:getCount() + countDelta
if newCount < 0 then if newCount < 0 then
error("ERROR: New stack count is negative: "..newCount) error("ERROR: New stack count is negative: "..newCount)
@ -207,6 +205,15 @@ function ItemStack:transferTo(target, count)
return false, xfer return false, xfer
end end
if xfer == nil then
Logger:error(
"Error transferring item", self:getInventory().pushItems, Logger.plain("\n"),
peripheral.getName(target:getInventory()), Logger.plain("\n"),
self:getSlot(), cap, Logger.plain("\n"),
target
)
end
target:_modify(xfer, self) target:_modify(xfer, self)
self:_modify(-xfer, self) self:_modify(-xfer, self)