Compare commits

...

2 Commits

Author SHA1 Message Date
Gabriel Tofvesson
4c2e732607 Repeat debug calls in failure 2024-11-29 23:40:24 +01:00
Gabriel Tofvesson
c053a792a4 Retry debug line load 2024-11-29 23:38:47 +01:00
2 changed files with 12 additions and 6 deletions

View File

@ -3,6 +3,7 @@ local function copyObject(o)
for k,v in pairs(o) do for k,v in pairs(o) do
obj[k] = v obj[k] = v
end end
setmetatable(obj, getmetatable(o))
return obj return obj
end end
@ -13,9 +14,12 @@ local function execDebug(env)
return false, result[2] return false, result[2]
end end
local func = load(result[2], "debug", "bt", env) local func = load("return " .. result[2], "debug", "bt", env)
if type(func) ~= "function" then if type(func) ~= "function" then
return false, func func = load(result[2], "debug", "bt", env)
if type(func) ~= "function" then
return false, func
end
end end
return pcall(func) return pcall(func)

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)