local vineslist = { -- plug in your list here }, minetest.register_abm({ nodenames = vineslist chance = 1, interval = 1, action = function(pos, node, active_object_count, active_object_count_wider) if find_node_near(pos, 10, { "default:leaves" }) then minetest.set_node(pos, { name = "air" }) end end })