tweaked comments at the top of init.lua

This commit is contained in:
Vanessa Ezekowitz 2013-01-09 22:30:55 -05:00
parent 9139a601e2
commit c4640971cb
2 changed files with 12 additions and 10 deletions

View File

@ -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

View File

@ -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