home gui checks for 'home' priv

This commit is contained in:
TenPlus1 2017-02-11 18:13:48 +00:00
parent a0b2b8e5cb
commit f78d4f6af5

View File

@ -33,13 +33,14 @@ end)
-- what to do when we press da buttons
minetest.register_on_player_receive_fields(function(player, formname, fields)
if fields.home_gui_set then
local privs = minetest.get_player_privs(player:get_player_name()).home
if privs and fields.home_gui_set then
sethome.set( player:get_player_name(), player:getpos() )
end
if fields.home_gui_go then
if privs and fields.home_gui_go then
sethome.go( player:get_player_name() )
end
if fields.home_gui_spawn then
if privs and fields.home_gui_spawn then
player:setpos(statspawn)
end
if fields.home_gui or fields.home_gui_set or fields.home_gui_go then