Trowel: Add protection support
Thanks to felix7 for finding and reporting the bug!
This commit is contained in:
parent
51f08765ba
commit
77d19db338
@ -67,6 +67,10 @@ end
|
||||
local function replace_node(itemstack, placer, pointed_thing)
|
||||
if pointed_thing.type == "node" then
|
||||
local pos = pointed_thing.under
|
||||
local name = placer:get_player_name()
|
||||
if minetest.is_protected(pos, name) then
|
||||
return
|
||||
end
|
||||
local meta = M(pos)
|
||||
local node = minetest.get_node(pos)
|
||||
if minetest.get_item_group(node.name, "techage_trowel") == 1 then
|
||||
|
Loading…
Reference in New Issue
Block a user