From 3c4e443ddc211b4ecdd2b990a3fa9b12b46efaf6 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Fri, 9 Jun 2017 12:16:31 +0200 Subject: Fixed handling Lua errors in nested callbacks (#3755) --- Server/Plugins/Debuggers/Debuggers.lua | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'Server/Plugins/Debuggers/Debuggers.lua') diff --git a/Server/Plugins/Debuggers/Debuggers.lua b/Server/Plugins/Debuggers/Debuggers.lua index 6c47a8a17..0965a17c2 100644 --- a/Server/Plugins/Debuggers/Debuggers.lua +++ b/Server/Plugins/Debuggers/Debuggers.lua @@ -2279,6 +2279,18 @@ end +function HandleConsoleTestErr(a_Split, a_EntireCmd) + cRoot:Get():GetDefaultWorld():ForEachEntity( + function (a_CBEntity) + error("This error should not abort the server") + end + ) +end + + + + + function HandleConsoleTestJson(a_Split, a_EntireCmd) LOG("Testing Json parsing...") local t1 = cJson:Parse([[{"a": 1, "b": "2", "c": [3, "4", 5], "d": true }]]) -- cgit v1.2.3