Add logging statement for item transfer bug
This commit is contained in:
parent
a2f8f000db
commit
91583b1ca2
@ -1,6 +1,7 @@
|
||||
local Inventory = require("storage.inventory")
|
||||
local Sentinel = require("storage.sentinel")
|
||||
local Logger = require("logging").getGlobalLogger()
|
||||
local Logging = require("logging")
|
||||
local Logger = Logging.getGlobalLogger()
|
||||
|
||||
local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
|
||||
ItemStack.__index = ItemStack
|
||||
@ -157,9 +158,6 @@ function ItemStack:hasChanged(listObj, thorough)
|
||||
end
|
||||
|
||||
function ItemStack:_modify(countDelta, stack)
|
||||
if countDelta == nil then
|
||||
Logger:error("countDelta is nil!", stack)
|
||||
end
|
||||
local newCount = self:getCount() + countDelta
|
||||
if newCount < 0 then
|
||||
error("ERROR: New stack count is negative: "..newCount)
|
||||
@ -207,6 +205,15 @@ function ItemStack:transferTo(target, count)
|
||||
return false, xfer
|
||||
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)
|
||||
self:_modify(-xfer, self)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user