Hook debugger on error condition
This commit is contained in:
parent
0ff986a4f2
commit
686c1e5808
@ -7,6 +7,13 @@ local Debugger = require("debugger")
|
||||
local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
|
||||
ItemStack.__index = ItemStack
|
||||
|
||||
local function hookDebugger()
|
||||
local errorCond = Debugger.debugREPL(function(retval)
|
||||
Logger:error("->", retval)
|
||||
end)
|
||||
Logger:error("x>", errorCond)
|
||||
end
|
||||
|
||||
function ItemStack:fromDetail(inv, detail, slot)
|
||||
local obj = {
|
||||
slot = slot,
|
||||
@ -193,6 +200,10 @@ function ItemStack:_modify(countDelta, stack)
|
||||
end
|
||||
|
||||
function ItemStack:transferTo(target, count)
|
||||
if target:getMaxCount() == nil then
|
||||
Logger:error("Max count is nil?", target, "\n", self, "\n", count)
|
||||
hookDebugger()
|
||||
end
|
||||
local cap = math.min(count or self:getCount(), target:getMaxCount() - target:getCount(), self:getCount())
|
||||
|
||||
-- If we can't transfer any data, then
|
||||
@ -222,10 +233,7 @@ function ItemStack:transferTo(target, count)
|
||||
target:getInventory().getItemLimit(target:getSlot()), "\n",
|
||||
result
|
||||
)
|
||||
local errorCond = Debugger.debugREPL(function(retval)
|
||||
Logger:error("->", retval)
|
||||
end)
|
||||
Logger:error("x>", errorCond)
|
||||
hookDebugger()
|
||||
end
|
||||
|
||||
target:_modify(result[2], self)
|
||||
|
Loading…
x
Reference in New Issue
Block a user