Repeat debug calls in failure

This commit is contained in:
Gabriel Tofvesson 2024-11-29 23:40:24 +01:00
parent c053a792a4
commit 4c2e732607

View File

@ -8,10 +8,12 @@ local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
ItemStack.__index = ItemStack ItemStack.__index = ItemStack
local function hookDebugger(context) local function hookDebugger(context)
local errorCond = Debugger.debugREPL(function(retval) while true do
Logger:error("->", retval) local errorCond = Debugger.debugREPL(function(retval)
end, context) Logger:error("->", retval)
Logger:error("x>", errorCond) end, context)
Logger:error("x>", errorCond)
end
end end
function ItemStack:fromDetail(inv, detail, slot) function ItemStack:fromDetail(inv, detail, slot)