From 4c2e732607482a31b4fb55b9238504b3e3217f7f Mon Sep 17 00:00:00 2001 From: Gabriel Tofvesson Date: Fri, 29 Nov 2024 23:40:24 +0100 Subject: [PATCH] Repeat debug calls in failure --- storage/itemstack.lua | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/storage/itemstack.lua b/storage/itemstack.lua index 4d65704..b3f356a 100644 --- a/storage/itemstack.lua +++ b/storage/itemstack.lua @@ -8,10 +8,12 @@ local ItemStack = Sentinel:tag({}, Sentinel.ITEMSTACK) ItemStack.__index = ItemStack local function hookDebugger(context) - local errorCond = Debugger.debugREPL(function(retval) - Logger:error("->", retval) - end, context) - Logger:error("x>", errorCond) + while true do + local errorCond = Debugger.debugREPL(function(retval) + Logger:error("->", retval) + end, context) + Logger:error("x>", errorCond) + end end function ItemStack:fromDetail(inv, detail, slot)