Fix worldedit_gui_lua privs

This fixes the worldedit_gui_lua feature so that it requires certain privs to run.
This commit is contained in:
tenplus1 2017-05-13 09:25:51 +01:00 committed by sfan5
parent 56f77a2f27
commit 0ce45a5900
1 changed files with 1 additions and 1 deletions

View File

@ -699,7 +699,7 @@ worldedit.register_gui_handler("worldedit_gui_save_load", function(name, fields)
end)
worldedit.register_gui_function("worldedit_gui_lua", {
name = "Run Lua",
name = "Run Lua", privs = minetest.chatcommands["/clearobjects"].privs,
get_formspec = function(name)
local code = gui_code[name]
return "size[8,6.5]" .. worldedit.get_formspec_header("worldedit_gui_lua") ..