mirror of
https://github.com/mt-mods/led_marquee.git
synced 2024-11-14 05:40:22 +01:00
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)
|
||||
end,
|
||||
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
|
||||
minetest.get_meta(pos):set_string("channel", fields.channel)
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user