2021-05-29 16:12:33 +02:00
|
|
|
local S = minetest.get_translator(minetest.get_current_modname())
|
2019-03-07 21:14:30 +01:00
|
|
|
|
2017-12-13 00:30:23 +01:00
|
|
|
minetest.register_privilege("maphack", {
|
2019-03-07 21:14:30 +01:00
|
|
|
description = S("Can place and use advanced blocks like mob spawners, command blocks and barriers."),
|
2017-12-13 00:30:23 +01:00
|
|
|
})
|
2021-09-19 13:15:19 +02:00
|
|
|
|
2021-09-27 22:00:11 +02:00
|
|
|
minetest.register_on_joinplayer(function(player)
|
2021-09-19 13:18:09 +02:00
|
|
|
local name = player:get_player_name()
|
2021-09-27 22:00:11 +02:00
|
|
|
local meta = player:get_meta()
|
2022-03-27 18:08:43 +02:00
|
|
|
if meta:get_int("mcl_privs:fly_changed") == 1 then return end
|
2021-09-27 22:00:11 +02:00
|
|
|
|
2021-09-19 13:28:07 +02:00
|
|
|
local fly = nil
|
2021-09-19 13:15:19 +02:00
|
|
|
if minetest.is_creative_enabled(name) then
|
|
|
|
fly = true
|
|
|
|
end
|
2021-09-30 22:14:13 +02:00
|
|
|
local player_privs = minetest.get_player_privs(name)
|
|
|
|
player_privs.fly = fly
|
|
|
|
minetest.set_player_privs(name, player_privs)
|
2021-09-19 13:15:19 +02:00
|
|
|
end)
|
2021-09-27 22:00:11 +02:00
|
|
|
|
2021-09-30 22:14:13 +02:00
|
|
|
for _, action in pairs({"grant", "revoke"}) do
|
2021-09-27 22:00:11 +02:00
|
|
|
minetest["register_on_priv_" .. action](function(name, _, priv)
|
2022-03-15 15:58:27 +01:00
|
|
|
local player = minetest.get_player_by_name(name)
|
2022-03-27 18:08:43 +02:00
|
|
|
if not player then
|
|
|
|
return
|
|
|
|
end
|
2022-03-15 15:58:27 +01:00
|
|
|
|
2022-03-27 18:08:43 +02:00
|
|
|
local meta = player:get_meta()
|
|
|
|
|
|
|
|
if priv == "fly" then
|
|
|
|
meta:set_int("mcl_privs:fly_changed", 1)
|
|
|
|
end
|
2022-03-15 15:58:27 +01:00
|
|
|
|
2022-03-27 18:08:43 +02:00
|
|
|
--[[
|
|
|
|
so e.g. hackers who have been revoked of the interact privilege
|
|
|
|
will not automatically get the interact privilege through the mcl shields code back
|
|
|
|
]]
|
|
|
|
if priv == "interact" then
|
|
|
|
if action == "revoke" then
|
|
|
|
meta:set_int("mcl_privs:interact_revoked", 1)
|
|
|
|
else
|
|
|
|
meta:set_int("mcl_privs:interact_revoked", 0)
|
2022-03-15 15:58:27 +01:00
|
|
|
end
|
2021-09-27 22:00:11 +02:00
|
|
|
end
|
|
|
|
end)
|
|
|
|
end
|