forked from mtcontrib/led_marquee
Merge branch 'master' into 'master'
Added protection to marquee channel setup formspec See merge request VanessaE/led_marquee!3
This commit is contained in:
commit
b2defa0eec
5
init.lua
5
init.lua
|
@ -412,6 +412,11 @@ for i = 31, 255 do
|
||||||
reset_meta(pos)
|
reset_meta(pos)
|
||||||
end,
|
end,
|
||||||
on_receive_fields = function(pos, formname, fields, sender)
|
on_receive_fields = function(pos, formname, fields, sender)
|
||||||
|
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
|
||||||
if (fields.channel) then
|
if (fields.channel) then
|
||||||
minetest.get_meta(pos):set_string("channel", fields.channel)
|
minetest.get_meta(pos):set_string("channel", fields.channel)
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue
Block a user