forked from MineClone5/MineClone5
Reduce sapling growth chances
This commit is contained in:
parent
9ebabff5f4
commit
6eab133702
|
@ -805,7 +805,7 @@ minetest.register_abm({
|
||||||
nodenames = {"mcl_core:sapling"},
|
nodenames = {"mcl_core:sapling"},
|
||||||
neighbors = {"group:soil_sapling"},
|
neighbors = {"group:soil_sapling"},
|
||||||
interval = 20,
|
interval = 20,
|
||||||
chance = 1,
|
chance = 2,
|
||||||
action = sapling_grow_action("mcl_core:tree", "mcl_core:leaves", 1, 1),
|
action = sapling_grow_action("mcl_core:tree", "mcl_core:leaves", 1, 1),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -815,7 +815,7 @@ minetest.register_abm({
|
||||||
nodenames = {"mcl_core:darksapling"},
|
nodenames = {"mcl_core:darksapling"},
|
||||||
neighbors = {"group:soil_sapling"},
|
neighbors = {"group:soil_sapling"},
|
||||||
interval = 20,
|
interval = 20,
|
||||||
chance = 1,
|
chance = 2,
|
||||||
action = sapling_grow_action("mcl_core:darktree", "mcl_core:darkleaves", 1, 2),
|
action = sapling_grow_action("mcl_core:darktree", "mcl_core:darkleaves", 1, 2),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -835,7 +835,7 @@ minetest.register_abm({
|
||||||
nodenames = {"mcl_core:sprucesapling"},
|
nodenames = {"mcl_core:sprucesapling"},
|
||||||
neighbors = {"group:soil_sapling"},
|
neighbors = {"group:soil_sapling"},
|
||||||
interval = 20,
|
interval = 20,
|
||||||
chance = 1,
|
chance = 2,
|
||||||
action = sapling_grow_action("mcl_core:sprucetree", "mcl_core:spruceleaves", 3, 1),
|
action = sapling_grow_action("mcl_core:sprucetree", "mcl_core:spruceleaves", 3, 1),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -845,7 +845,7 @@ minetest.register_abm({
|
||||||
nodenames = {"mcl_core:birchsapling"},
|
nodenames = {"mcl_core:birchsapling"},
|
||||||
neighbors = {"group:soil_sapling"},
|
neighbors = {"group:soil_sapling"},
|
||||||
interval = 20,
|
interval = 20,
|
||||||
chance = 1,
|
chance = 2,
|
||||||
action = sapling_grow_action("mcl_core:birchtree", "mcl_core:birchleaves", 1, 1),
|
action = sapling_grow_action("mcl_core:birchtree", "mcl_core:birchleaves", 1, 1),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
@ -855,7 +855,7 @@ minetest.register_abm({
|
||||||
nodenames = {"mcl_core:acaciasapling"},
|
nodenames = {"mcl_core:acaciasapling"},
|
||||||
neighbors = {"group:soil_sapling"},
|
neighbors = {"group:soil_sapling"},
|
||||||
interval = 20,
|
interval = 20,
|
||||||
chance = 1,
|
chance = 2,
|
||||||
action = sapling_grow_action("mcl_core:acaciatree", "mcl_core:acacialeaves", 4, 2),
|
action = sapling_grow_action("mcl_core:acaciatree", "mcl_core:acacialeaves", 4, 2),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue