Skip to content
Snippets Groups Projects
Commit 40487a65 authored by Carter Kolwey's avatar Carter Kolwey Committed by Jeija
Browse files

Add protection support to Luacontrollers,

protection is ignored with protection_bypass_priv
parent 75308f73
No related branches found
No related tags found
No related merge requests found
......@@ -508,10 +508,15 @@ local digiline = {
end
}
}
local function on_receive_fields(pos, form_name, fields)
local function on_receive_fields(pos, form_name, fields, sender)
if not fields.program then
return
end
local name = sender:get_player_name()
if minetest.is_protected(pos, name) and not minetest.check_player_privs(name, {protection_bypass=true}) then
minetest.record_protection_violation(pos, name)
return
end
reset(pos)
reset_meta(pos, fields.code)
local err = run(pos, {type="program"})
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment