forked from VoxeLibre/VoxeLibre
Fix typo and interact bug?
This commit is contained in:
parent
63a156c30c
commit
6afe7cfb58
|
@ -204,9 +204,10 @@ local function set_interact(player, interact)
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
local meta = player:get_meta()
|
local meta = player:get_meta()
|
||||||
if meta:get_int("ineract_revoked") ~= 1 then
|
if meta:get_int("mcl_privs:interact_revoked") ~= 1 then
|
||||||
privs.interact = interact
|
privs.interact = interact
|
||||||
minetest.set_player_privs(player_name, privs)
|
minetest.set_player_privs(player_name, privs)
|
||||||
|
meta:set_int("mcl_privs:interact_revoked",0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -7,7 +7,7 @@ minetest.register_privilege("maphack", {
|
||||||
minetest.register_on_joinplayer(function(player)
|
minetest.register_on_joinplayer(function(player)
|
||||||
local name = player:get_player_name()
|
local name = player:get_player_name()
|
||||||
local meta = player:get_meta()
|
local meta = player:get_meta()
|
||||||
if meta:get_int("fly_changed") == 1 then return end
|
if meta:get_int("mcl_privs:fly_changed") == 1 then return end
|
||||||
|
|
||||||
local fly = nil
|
local fly = nil
|
||||||
if minetest.is_creative_enabled(name) then
|
if minetest.is_creative_enabled(name) then
|
||||||
|
@ -21,24 +21,25 @@ end)
|
||||||
for _, action in pairs({"grant", "revoke"}) do
|
for _, action in pairs({"grant", "revoke"}) do
|
||||||
minetest["register_on_priv_" .. action](function(name, _, priv)
|
minetest["register_on_priv_" .. action](function(name, _, priv)
|
||||||
local player = minetest.get_player_by_name(name)
|
local player = minetest.get_player_by_name(name)
|
||||||
if player then
|
if not player then
|
||||||
local meta = player:get_meta()
|
return
|
||||||
|
end
|
||||||
|
|
||||||
if priv == "fly" then
|
local meta = player:get_meta()
|
||||||
meta:set_int("fly_changed", 1)
|
|
||||||
end
|
|
||||||
|
|
||||||
--[[
|
if priv == "fly" then
|
||||||
so e.g. hackers who have been revoked of the interact privilege
|
meta:set_int("mcl_privs:fly_changed", 1)
|
||||||
will not automatically get the interact privilege through the mcl shields code back
|
end
|
||||||
]]
|
|
||||||
|
|
||||||
if priv == "interact" then
|
--[[
|
||||||
if action == "revoke" then
|
so e.g. hackers who have been revoked of the interact privilege
|
||||||
meta:set_int("ineract_revoked", 1)
|
will not automatically get the interact privilege through the mcl shields code back
|
||||||
else
|
]]
|
||||||
meta:set_int("ineract_revoked", 0)
|
if priv == "interact" then
|
||||||
end
|
if action == "revoke" then
|
||||||
|
meta:set_int("mcl_privs:interact_revoked", 1)
|
||||||
|
else
|
||||||
|
meta:set_int("mcl_privs:interact_revoked", 0)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in New Issue