Remove player privilege

This commit is contained in:
Wuzzy 2018-02-05 03:02:25 +01:00
parent 2f88529d41
commit 42cf5b38d2
1 changed files with 1 additions and 7 deletions

View File

@ -35,19 +35,13 @@ local function handle_kill_command(suspect, victim)
return true
end
if not minetest.registered_privileges["player"] then
minetest.register_privilege("player", {
description = S("Can change player attributes"),
give_to_singleplayer = false,
})
end
if minetest.registered_chatcommands["kill"] then
minetest.unregister_chatcommand("kill")
end
minetest.register_chatcommand("kill", {
params = S("[<name>]"),
description = S("Kill player or yourself"),
privs = {player=true},
privs = {server=true},
func = function(name, param)
if(param == "") then
-- Selfkill