Enable fly in creative mode

This commit is contained in:
NO11 2021-09-19 11:15:19 +00:00
parent 4194a76db0
commit 0e15accada
1 changed files with 11 additions and 0 deletions

View File

@ -3,3 +3,14 @@ local S = minetest.get_translator(minetest.get_current_modname())
minetest.register_privilege("maphack", {
description = S("Can place and use advanced blocks like mob spawners, command blocks and barriers."),
})
minetest.register_on_joinplayer(function(player)
local name = user:get_player_name()
local fly = false
if minetest.is_creative_enabled(name) then
fly = true
end
minetest.set_player_privs(name, {
fly = fly,
})
end)