master #9

Merged
NO11 merged 42 commits from VoxeLibre/VoxeLibre:master into master 2021-10-09 23:19:44 +02:00
1 changed files with 11 additions and 0 deletions
Showing only changes of commit 0e15accada - Show all commits

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)