summaryrefslogtreecommitdiff
path: root/init.lua
diff options
context:
space:
mode:
authorVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-01-20 14:53:42 -0500
committerVanessa Ezekowitz <vanessaezekowitz@gmail.com>2013-01-20 14:53:42 -0500
commit8952d61c061f7affc7776f00e6113e438aa04d1c (patch)
tree2545a5e6e4f0cb7232c34fb672d99a984be7279c /init.lua
parentd80cfb4a7f37758ef2ee0c75336028baac922677 (diff)
set sapling interval/chance to their defaults, enabled beech
tree code which replaces the default trees.
Diffstat (limited to 'init.lua')
-rw-r--r--init.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/init.lua b/init.lua
index a7b9491..bb73328 100644
--- a/init.lua
+++ b/init.lua
@@ -53,16 +53,16 @@ plantslib:register_generate_plant(moretrees.conifer_biome, "moretrees:grow_conif
-- Enable them if you want but be warned - due to serious bugs in the speed
-- of the engine's map generator/loader, doing so will slow it WAY down.
---[[
+
minetest.register_alias("mapgen_tree", "air")
minetest.register_alias("mapgen_leaves", "air")
plantslib:register_generate_plant(moretrees.beech_biome, moretrees.beech_model)
-]]--
+
-- sapling growth setup
-local sapling_interval = 1
-local sapling_chance = 1
+local sapling_interval = 500
+local sapling_chance = 10
for i in ipairs(simple_trees) do
local tree_name = trees[i][1]