mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 13:53:03 +00:00
fix busted error
This commit is contained in:
parent
45711764da
commit
0ca3842b40
1 changed files with 1 additions and 1 deletions
|
@ -70,7 +70,7 @@ end
|
|||
-- @param string error_msg The error message to send when `fn` inevitably crashes.
|
||||
-- @param string|nil cmdname Optional. The name of the command being run.
|
||||
-- @returns bool,any,... A success bool (true == success), and then if success == true the rest of the arguments are the (unpacked) return values from the function called. If success == false, then the 2nd argument will be the stack trace.
|
||||
function safe_function(fn, args, player_name, error_msg, cmdname)
|
||||
local function safe_function(fn, args, player_name, error_msg, cmdname)
|
||||
local retvals
|
||||
local success_xpcall, stack_trace = xpcall(function()
|
||||
retvals = { fn(weac.table.unpack(args)) }
|
||||
|
|
Loading…
Reference in a new issue