mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-03 17:10:27 +01:00
20 lines
487 B
Lua
Executable File
20 lines
487 B
Lua
Executable File
|
|
local old_is_protected = minetest.is_protected
|
|
function minetest.is_protected(pos, name)
|
|
if not areas:canInteract(pos, name) then
|
|
return true
|
|
end
|
|
return old_is_protected(pos, name)
|
|
end
|
|
|
|
minetest.register_on_protection_violation(function(pos, name)
|
|
if not areas:canInteract(pos, name) then
|
|
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
|
|
end)
|
|
|