forked from VoxeLibre/VoxeLibre
Dark Oak Leaves now drop apples
This commit is contained in:
parent
c8cee78efc
commit
889609c4d5
|
@ -516,7 +516,7 @@ minetest.register_node("default:leaves", {
|
||||||
items = {'default:sapling'},
|
items = {'default:sapling'},
|
||||||
rarity = 20,
|
rarity = 20,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
-- player will get apple with 1/200 chance
|
-- player will get apple with 1/200 chance
|
||||||
items = {'default:apple'},
|
items = {'default:apple'},
|
||||||
rarity = 200,
|
rarity = 200,
|
||||||
|
@ -571,6 +571,11 @@ minetest.register_node("default:darkleaves", {
|
||||||
items = {'default:darksapling'},
|
items = {'default:darksapling'},
|
||||||
rarity = 20,
|
rarity = 20,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
-- player will get apple with 1/200 chance
|
||||||
|
items = {'default:apple'},
|
||||||
|
rarity = 200,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
sounds = default.node_sound_leaves_defaults(),
|
sounds = default.node_sound_leaves_defaults(),
|
||||||
|
|
Loading…
Reference in New Issue