forked from nalc/homedecor_modpack
fix missing ownership check on editing yard signs
This commit is contained in:
parent
987f070069
commit
049b358c31
@ -233,6 +233,7 @@ minetest.register_node(":signs:sign_yard", {
|
|||||||
minetest.pos_to_string(pos)
|
minetest.pos_to_string(pos)
|
||||||
))
|
))
|
||||||
end
|
end
|
||||||
|
if homedecor_node_is_owned(pos, sender) then return end
|
||||||
homedecor_update_sign(pos, fields)
|
homedecor_update_sign(pos, fields)
|
||||||
end,
|
end,
|
||||||
on_punch = function(pos, node, puncher)
|
on_punch = function(pos, node, puncher)
|
||||||
@ -441,7 +442,7 @@ function homedecor_register_fence_with_sign(fencename, fencewithsignname)
|
|||||||
minetest.pos_to_string(pos)
|
minetest.pos_to_string(pos)
|
||||||
))
|
))
|
||||||
end
|
end
|
||||||
if homedecor_node_is_owned(pos, sender) then return end
|
if homedecor_node_is_owned(pos, sender) then return end
|
||||||
homedecor_update_sign(pos, fields)
|
homedecor_update_sign(pos, fields)
|
||||||
end
|
end
|
||||||
def_sign.on_punch = function(pos, node, puncher, ...)
|
def_sign.on_punch = function(pos, node, puncher, ...)
|
||||||
|
Loading…
Reference in New Issue
Block a user