Update debugger

This commit is contained in:
Gabriel Tofvesson 2024-11-30 00:00:18 +01:00
parent 739149d852
commit c0d65f7f38

View File

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