Dig upwards for papyrus and cactus

This commit is contained in:
Casimir 2013-12-02 19:23:29 +01:00 committed by BlockMen
parent 919c9d152b
commit 9559f695ec
2 changed files with 20 additions and 1 deletions

View file

@ -266,6 +266,19 @@ minetest.register_abm({
end,
})
--
-- dig upwards
--
function default.dig_up(pos, node, digger)
if digger == nil then return end
local np = {x = pos.x, y = pos.y + 1, z = pos.z}
local nn = minetest.get_node(np)
if nn.name == node.name then
minetest.node_dig(np, nn, digger)
end
end
--
-- Leafdecay
--