Dark Oak Leaves now drop apples

This commit is contained in:
Wuzzy 2017-01-09 04:54:46 +01:00
parent c8cee78efc
commit 889609c4d5
1 changed files with 6 additions and 1 deletions

View File

@ -516,7 +516,7 @@ minetest.register_node("default:leaves", {
items = {'default:sapling'},
rarity = 20,
},
{
{
-- player will get apple with 1/200 chance
items = {'default:apple'},
rarity = 200,
@ -571,6 +571,11 @@ minetest.register_node("default:darkleaves", {
items = {'default:darksapling'},
rarity = 20,
},
{
-- player will get apple with 1/200 chance
items = {'default:apple'},
rarity = 200,
},
}
},
sounds = default.node_sound_leaves_defaults(),