check if an item is leaves by groups

This commit is contained in:
theFox6 2018-06-28 10:48:54 +02:00 committed by GitHub
parent 7d22092657
commit 1e4e35f5c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -42,7 +42,8 @@ end
local function is_leaves(name)
return tubelib_addons1.FarmingNodes[name] ~= nil and
tubelib_addons1.FarmingNodes[name].leaves == true
(tubelib_addons1.FarmingNodes[name].leaves == true or
minetest.get_node_group(name, "leaves") > 0)
end
local function allow_metadata_inventory_put(pos, listname, index, stack, player)