diff options
author | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-09 22:30:55 -0500 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2013-01-09 22:30:55 -0500 |
commit | c4640971cb4f9e49d0c72111b4a74e691973b8ff (patch) | |
tree | 2cef2090b771b1f6f2e825d5c698c703490c60e4 | |
parent | 9139a601e29992363a19692addbf74ecbdc94b16 (diff) |
tweaked comments at the top of init.lua
-rw-r--r-- | init.lua | 4 | ||||
-rw-r--r-- | init.lua~ | 18 |
2 files changed, 12 insertions, 10 deletions
@@ -7,10 +7,12 @@ -- jungle trees mod. -- -- Brought together into one mod and made L-systems compatible by Vanessa --- Ezekowitz. +-- Ezekowitz. Thrown together on 2013-01-09 :-) -- -- Jungle tree axioms/rules tweaked by RealBadAngel -- +-- License: WTFPL for all parts (code and textures) +-- local DEBUG = false @@ -12,15 +12,15 @@ -- Jungle tree axioms/rules tweaked by RealBadAngel -- -local DEBUG = true +local DEBUG = false -- Jungletree init stuff: -local JT_SPAWN_INTERVAL = 1 -- 100 -local JT_SPAWN_CHANCE = 2 -- 10 +local JT_SPAWN_INTERVAL = 100 +local JT_SPAWN_CHANCE = 10 -local JT_GROW_INTERVAL = 1 -- 1000 -local JT_GROW_CHANCE = 2 -- 100 +local JT_GROW_INTERVAL = 1000 +local JT_GROW_CHANCE = 100 local JT_RADIUS = 8 local JT_WATER_RADIUS = 25 @@ -30,11 +30,11 @@ local jungletree_seed_diff = plantlife_seed_diff -- Conifers init stuff: -local CONIFERS_SPAWN_SAPLING_CHANCE = 1 -- 500 -local CONIFERS_SPAWN_SAPLING_INTERVAL = 2 -- 3600 +local CONIFERS_SPAWN_SAPLING_CHANCE = 500 +local CONIFERS_SPAWN_SAPLING_INTERVAL = 3600 -local CONIFERS_GROW_SAPLING_CHANCE = 1 -- 100 -local CONIFERS_GROW_SAPLING_INTERVAL = 2 -- 3600 +local CONIFERS_GROW_SAPLING_CHANCE = 100 +local CONIFERS_GROW_SAPLING_INTERVAL = 3600 --local CONIFERS_TRUNK_MINHEIGHT = 7 --local CONIFERS_TRUNK_MAXHEIGHT = 25 |