1
0
mirror of https://github.com/mt-mods/led_marquee.git synced 2024-11-14 05:40:22 +01:00

Added protection to marquee channel setup formspec

This commit is contained in:
Emiel van Rooijen 2019-03-24 19:58:23 +01:00
parent 114856e529
commit 4880b5c0c3

View File

@ -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