sapling chance changed for smaller tree's, plantlike leaves default again
This commit is contained in:
parent
1bd6be68e1
commit
77fc2ab5d6
4
init.lua
4
init.lua
@ -9,8 +9,8 @@
|
|||||||
]]
|
]]
|
||||||
|
|
||||||
ethereal = {}
|
ethereal = {}
|
||||||
ethereal.leaftype = 1 -- 0 for 2D plantlike, 1 for 3D allfaces
|
ethereal.leaftype = 0 -- 0 for 2D plantlike, 1 for 3D allfaces
|
||||||
ethereal.leafwalk = true -- true for walkable leaves, false to fall through
|
ethereal.leafwalk = false -- true for walkable leaves, false to fall through
|
||||||
ethereal.cavedirt = true -- caves chop through dirt when true
|
ethereal.cavedirt = true -- caves chop through dirt when true
|
||||||
|
|
||||||
-- Set following to 1 to enable biome or 0 to disable
|
-- Set following to 1 to enable biome or 0 to disable
|
||||||
|
10
leaves.lua
10
leaves.lua
@ -105,7 +105,7 @@ minetest.override_item("default:leaves", {
|
|||||||
drop = {
|
drop = {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{items = {"ethereal:tree_sapling"}, rarity = 20},
|
{items = {"ethereal:tree_sapling"}, rarity = 15},
|
||||||
{items = {"default:leaves"}}
|
{items = {"default:leaves"}}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -126,7 +126,7 @@ minetest.register_node("ethereal:orange_leaves", {
|
|||||||
drop = {
|
drop = {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{items = {"ethereal:orange_tree_sapling"}, rarity = 20},
|
{items = {"ethereal:orange_tree_sapling"}, rarity = 15},
|
||||||
{items = {"ethereal:orange_leaves"}}
|
{items = {"ethereal:orange_leaves"}}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -165,7 +165,7 @@ minetest.register_node("ethereal:bananaleaves", {
|
|||||||
drop = {
|
drop = {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{items = {"ethereal:banana_tree_sapling"}, rarity = 20},
|
{items = {"ethereal:banana_tree_sapling"}, rarity = 15},
|
||||||
{items = {"ethereal:bananaleaves"}}
|
{items = {"ethereal:bananaleaves"}}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -214,7 +214,7 @@ minetest.register_node("ethereal:palmleaves", {
|
|||||||
drop = {
|
drop = {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{items = {"ethereal:palm_sapling"}, rarity = 20},
|
{items = {"ethereal:palm_sapling"}, rarity = 15},
|
||||||
{items = {"ethereal:palmleaves"}}
|
{items = {"ethereal:palmleaves"}}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -279,7 +279,7 @@ minetest.register_node("ethereal:frost_leaves", {
|
|||||||
drop = {
|
drop = {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
{items = {"ethereal:frost_tree_sapling"}, rarity = 20},
|
{items = {"ethereal:frost_tree_sapling"}, rarity = 15},
|
||||||
{items = {"ethereal:frost_leaves"}}
|
{items = {"ethereal:frost_leaves"}}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user