Add "ban" privilege for kill chatcommand

This commit is contained in:
paly2 2016-06-17 16:08:50 +02:00
parent ac414d3df3
commit 862deff373
1 changed files with 2 additions and 1 deletions

View File

@ -620,10 +620,11 @@ end)
minetest.register_chatcommand("kill", {
params = "<name>",
description = "Kills player instantly",
privs = {ban=true},
func = function(name, param)
local player = minetest.get_player_by_name(name)
if player then
player:set_hp(-1001)
player:set_hp(0)
end
end,
})