Skip to content
Snippets Groups Projects
Commit 8eff7ba0 authored by ShadowNinja's avatar ShadowNinja
Browse files

Add protection support to signs

parent 5dcc5cb3
Branches
Tags
No related merge requests found
......@@ -650,6 +650,10 @@ minetest.register_node("default:sign_wall", {
end,
on_receive_fields = function(pos, formname, fields, sender)
--print("Sign at "..minetest.pos_to_string(pos).." got "..dump(fields))
if minetest.is_protected(pos, sender:get_player_name()) then
minetest.record_protection_violation(pos, sender:get_player_name())
return
end
local meta = minetest.get_meta(pos)
fields.text = fields.text or ""
minetest.log("action", (sender:get_player_name() or "").." wrote \""..fields.text..
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment