Update debugger
This commit is contained in:
parent
739149d852
commit
c0d65f7f38
@ -8,12 +8,15 @@ local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK)
|
||||
ItemStack.__index = ItemStack
|
||||
|
||||
local function hookDebugger(context)
|
||||
while true do
|
||||
local errorCond = Debugger.debugREPL(function(retval)
|
||||
Logger:error("->", retval)
|
||||
local result, retval
|
||||
repeat
|
||||
result, retval = Debugger.debugREPL(function(r)
|
||||
Logger:error("->", r)
|
||||
end, context)
|
||||
Logger:error("x>", errorCond)
|
||||
end
|
||||
if not result then
|
||||
Logger:error("x>", retval)
|
||||
end
|
||||
until result
|
||||
end
|
||||
|
||||
function ItemStack:fromDetail(inv, detail, slot)
|
||||
|
Loading…
x
Reference in New Issue
Block a user