mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-22 23:42:59 +00:00
core/run_command: be more robust in case of programming errors
This commit is contained in:
parent
873ff4bef8
commit
b92cc434db
1 changed files with 4 additions and 1 deletions
|
@ -37,9 +37,12 @@ local function run_command(cmdname, options, player_name, paramtext)
|
|||
end
|
||||
|
||||
local parse_result = { options.parse(paramtext) }
|
||||
if #parse_result >= 2 and parse_result[1] == false and type(parse_result[2]) ~= "string" then
|
||||
minetest.log("warning", "[WorldEditAdditions:core] This is a bug. Parsing function for cmd "..cmdname.." failed but provided value of type "..type(parse_result[2]).." as an error message instead of the expected value of type string.All output from the parsing function: "..wea_c.inspect(parse_result))
|
||||
end
|
||||
local success = table.remove(parse_result, 1)
|
||||
if not success then
|
||||
worldedit.player_notify(player_name, parse_result[1] or "Invalid usage (no further error message was provided by the command. This is probably a bug.)")
|
||||
worldedit.player_notify(player_name, tostring(parse_result[1]) or "Invalid usage (no further error message was provided by the command. This is probably a bug.)")
|
||||
return false
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue