mirror of
https://github.com/joe7575/techpack.git
synced 2024-11-22 07:13:48 +01:00
formspec protection added
This commit is contained in:
parent
e91e2722d1
commit
1af6d380d3
@ -82,10 +82,13 @@ minetest.register_node("sl_controller:server", {
|
||||
|
||||
on_receive_fields = function(pos, formname, fields, player)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if fields.names and fields.names ~= "" then
|
||||
local names = string.gsub(fields.names, " +", " ")
|
||||
meta:set_string("names", names)
|
||||
meta:set_string("formspec", formspec(meta))
|
||||
local owner = meta:get_string("owner")
|
||||
if player:get_player_name() == owner then
|
||||
if fields.names and fields.names ~= "" then
|
||||
local names = string.gsub(fields.names, " +", " ")
|
||||
meta:set_string("names", names)
|
||||
meta:set_string("formspec", formspec(meta))
|
||||
end
|
||||
end
|
||||
end,
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user