Replace deprecated call to 'minetest.env'

This commit is contained in:
AntumDeluge 2017-06-07 21:42:30 -07:00 committed by Jordan Irwin
parent ff382bba88
commit 096ae76d16

View file

@ -15,7 +15,7 @@ minetest.register_abm({
interval = 1,
chance = 1,
action = function(pos, node)
minetest.env:remove_node(pos)
minetest.remove_node(pos)
end,
})