diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-09-15 01:56:30 -0400 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-09-15 01:56:30 -0400 |
commit | 5a27405fadcf314fa21ec6573e8cd534d4f35c55 (patch) | |
tree | f24015c056a7e64f178b83969f424985797a31e2 | |
parent | 2f3d7bed0b2eff14201764d5b4071f564c0fe943 (diff) |
forgot to update sapling_ongen spawn chance/interval of some trees.
-rw-r--r-- | saplings.lua | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/saplings.lua b/saplings.lua index 64c6a59..7d8a9b9 100644 --- a/saplings.lua +++ b/saplings.lua @@ -36,8 +36,8 @@ plantslib:grow_plants({ }) plantslib:grow_plants({ - grow_delay = moretrees.sapling_interval, - grow_chance = moretrees.sapling_chance, + grow_delay = 2, + grow_chance = 30, grow_plant = "moretrees:birch_sapling_ongen", grow_nodes = moretrees.birch_biome.surface, grow_function = "moretrees:grow_birch" @@ -52,8 +52,8 @@ plantslib:grow_plants({ }) plantslib:grow_plants({ - grow_delay = moretrees.sapling_interval, - grow_chance = moretrees.sapling_chance, + grow_delay = 2, + grow_chance = 30, grow_plant = "moretrees:spruce_sapling_ongen", grow_nodes = moretrees.spruce_biome.surface, grow_function = "moretrees:grow_spruce" @@ -68,8 +68,8 @@ plantslib:grow_plants({ }) plantslib:grow_plants({ - grow_delay = moretrees.sapling_interval, - grow_chance = moretrees.sapling_chance, + grow_delay = 2, + grow_chance = 30, grow_plant = "moretrees:fir_sapling_ongen", grow_nodes = moretrees.fir_biome.surface, grow_function = "moretrees:grow_fir" @@ -84,8 +84,8 @@ plantslib:grow_plants({ }) plantslib:grow_plants({ - grow_delay = moretrees.sapling_interval, - grow_chance = moretrees.sapling_chance, + grow_delay = 2, + grow_chance = 30, grow_plant = "moretrees:jungletree_sapling_ongen", grow_nodes = moretrees.jungletree_biome.surface, grow_function = "moretrees:grow_jungletree" |