fix grief_check

This commit is contained in:
Elkien3 2018-04-17 17:03:25 -05:00
parent e969eb823a
commit 890dca7b4e

View File

@ -233,14 +233,6 @@ minetest.register_chatcommand("grief_check", {
local seconds = (hours*60)*60
minetest.rollback_punch_callbacks[name] = function(pos, node, puncher)
local name = puncher:get_player_name()
if ctf.get_territory_owner(pos) then
if minetest.is_protected(pos, name) then
return
end
else
minetest.chat_send_player(name, "You can only check on an owned area.")
return
end
minetest.chat_send_player(name, "Checking " .. minetest.pos_to_string(pos) .. "...")
local actions = minetest.rollback_get_node_actions(pos, range, seconds, limit)
if not actions then