2013-09-03 01:16:14 +02:00
|
|
|
|
|
|
|
-- Gives a player a warning message about a area being protected
|
2013-09-07 05:08:01 +02:00
|
|
|
local function printWarning(pos, name)
|
2013-09-03 01:16:14 +02:00
|
|
|
local owners = areas:getNodeOwners(pos)
|
|
|
|
minetest.chat_send_player(name, ("%s is protected by %s.")
|
|
|
|
:format(minetest.pos_to_string(pos), table.concat(owners, ", ")))
|
|
|
|
end
|
|
|
|
|
2013-09-07 05:08:01 +02:00
|
|
|
if minetest.is_protected then
|
|
|
|
old_is_protected = minetest.is_protected
|
|
|
|
function minetest.is_protected(pos, name)
|
2013-09-03 01:16:14 +02:00
|
|
|
if not areas:canInteract(pos, name) then
|
2013-09-07 05:08:01 +02:00
|
|
|
return true
|
2013-09-03 01:16:14 +02:00
|
|
|
end
|
2013-09-07 05:08:01 +02:00
|
|
|
return old_is_protected(pos, name)
|
2013-09-03 01:16:14 +02:00
|
|
|
end
|
2013-09-03 23:09:11 +02:00
|
|
|
|
2013-09-07 05:08:01 +02:00
|
|
|
minetest.register_on_protection_violation(function(pos, name)
|
|
|
|
if not areas:canInteract(pos, name) then
|
|
|
|
printWarning(pos, name)
|
|
|
|
end
|
|
|
|
end)
|
|
|
|
|
|
|
|
else
|
|
|
|
local old_node_place = minetest.item_place_node
|
|
|
|
function minetest.item_place_node(itemstack, placer, pointed_thing)
|
|
|
|
local pos = pointed_thing.above
|
|
|
|
local under_node = minetest.get_node(pointed_thing.under)
|
|
|
|
local under_def = minetest.registered_nodes[under_node.name]
|
2013-09-03 01:16:14 +02:00
|
|
|
|
2013-09-07 05:08:01 +02:00
|
|
|
if under_def and under_def.buildable_to then
|
|
|
|
pos = pointed_thing.under
|
|
|
|
end
|
|
|
|
|
|
|
|
if not areas:canInteract(pos, placer:get_player_name()) then
|
|
|
|
printWarning(pos, placer:get_player_name())
|
|
|
|
return itemstack -- Abort place.
|
|
|
|
end
|
|
|
|
return old_node_place(itemstack, placer, pointed_thing)
|
2013-09-03 23:09:11 +02:00
|
|
|
end
|
|
|
|
|
2013-09-07 05:08:01 +02:00
|
|
|
local old_node_dig = minetest.node_dig
|
|
|
|
function minetest.node_dig(pos, node, digger)
|
|
|
|
if not areas:canInteract(pos, digger:get_player_name()) then
|
|
|
|
printWarning(pos, digger:get_player_name())
|
|
|
|
return -- Abort dig.
|
|
|
|
end
|
|
|
|
return old_node_dig(pos, node, digger)
|
2013-09-03 01:16:14 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|