Make rubber leaves yield rubber leaves

Previously, you wouldn't get any leaves items from mining rubber tree leaves.
Leafdecay still doesn't drop the leaves, only the saplings, just like with normal trees.
This commit is contained in:
est31 2015-03-22 19:34:35 +01:00
parent 6b800758fb
commit 3f179e4c53
1 changed files with 5 additions and 1 deletions

View File

@ -48,7 +48,11 @@ minetest.register_node(":moretrees:rubber_tree_leaves", {
items = {{
items = {"moretrees:rubber_tree_sapling"},
rarity = 20,
}}
},
{
items = {"moretrees:rubber_tree_leaves"},
}
}
},
sounds = default.node_sound_leaves_defaults(),
})