mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-29 14:01:07 +01:00
Use dig_node instead of remove in creative dig
This commit is contained in:
parent
9eb1e8373e
commit
e6aeb9ffba
1 changed files with 1 additions and 1 deletions
|
@ -214,7 +214,7 @@ minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing)
|
||||||
local def = minetest.registered_nodes[node.name]
|
local def = minetest.registered_nodes[node.name]
|
||||||
if def then
|
if def then
|
||||||
if def.on_destruct then def.on_destruct(pos) end
|
if def.on_destruct then def.on_destruct(pos) end
|
||||||
minetest.remove_node(pos)
|
minetest.dig_node(pos)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
end)
|
end)
|
||||||
|
|
Loading…
Reference in a new issue