Fix insta-digging crash when punching stairs.

This commit is contained in:
MysticTempest 2022-11-09 04:26:41 -06:00
parent bbd2ac904d
commit 6a0bcf9881
1 changed files with 1 additions and 1 deletions

View File

@ -213,7 +213,7 @@ minetest.register_on_punchnode(function(pos, node, puncher, pointed_thing)
if pointed_thing.type ~= "node" then return end
local def = minetest.registered_nodes[node.name]
if def then
minetest.node_dig(pos,def,puncher)
minetest.node_dig(pos,node,puncher)
return true
end
end)