Trowel: Add protection support

Thanks to felix7 for finding and reporting the bug!
This commit is contained in:
Thomas--S 2020-10-21 19:04:41 +02:00
parent 51f08765ba
commit 77d19db338

View File

@ -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