mirror of
https://github.com/mt-mods/moretrees.git
synced 2024-12-25 02:00:23 +01:00
fixed a bug in conifers generation - I left out a few variable slots
so some of the last few variables were being set wrong.
This commit is contained in:
parent
41501b668d
commit
a275fd876f
16
init.lua
16
init.lua
@ -14,6 +14,19 @@
|
|||||||
-- License: WTFPL for all parts (code and textures)
|
-- License: WTFPL for all parts (code and textures)
|
||||||
--
|
--
|
||||||
|
|
||||||
|
-- snow biomes mod uses this code to make biomes:
|
||||||
|
--
|
||||||
|
-- local perlin1 = env:get_perlin(112,3, 0.5, 150)
|
||||||
|
-- local test = perlin1:get2d({x=pos.x, y=pos.z})
|
||||||
|
-- if smooth and (test > 0.73 or (test > 0.43 and math.random(0,29) > (0.73 - test) * 100 )) then
|
||||||
|
-- in_biome = true
|
||||||
|
-- elseif not smooth and test > 0.53 then
|
||||||
|
-- in_biome = true
|
||||||
|
-- end
|
||||||
|
--
|
||||||
|
-- We'll just save this for later use ;-)
|
||||||
|
--
|
||||||
|
|
||||||
local DEBUG = false
|
local DEBUG = false
|
||||||
|
|
||||||
-- Jungletree init stuff:
|
-- Jungletree init stuff:
|
||||||
@ -96,6 +109,9 @@ spawn_on_surfaces(
|
|||||||
nil,
|
nil,
|
||||||
CONIFERS_ALTITUDE,
|
CONIFERS_ALTITUDE,
|
||||||
nil,
|
nil,
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
|
nil,
|
||||||
1,
|
1,
|
||||||
9
|
9
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user