1
0
mirror of git://repo.or.cz/rocks.git synced 2025-01-04 07:10:28 +01:00

Disable grass and dirt for testing.

This commit is contained in:
Tomáš Brada 2015-05-10 13:00:56 +02:00
parent b9ad0a251c
commit 5864a396f5

View File

@ -36,7 +36,8 @@ do
{ -- default biome, if no biome mod is installed { -- default biome, if no biome mod is installed
name = "rocks:grassland", name = "rocks:grassland",
node_top = "air", node_top = "air",
depth_top = 1, depth_top = 0,
depth_filler=0,
y_min = lowland_min, y_min = lowland_min,
y_max = lowland_max, y_max = lowland_max,
heat_point = 50, heat_point = 50,
@ -88,9 +89,9 @@ do
rocksl.print("register_biome .name="..def.name.." -> btype="..btype) rocksl.print("register_biome .name="..def.name.." -> btype="..btype)
-- patch the new biomes with our rocks -- patch the new biomes with our rocks
if btype=="lowland" then if btype=="lowland" then
def.node_filler="rocks:mudstone" --def.node_filler="rocks:mudstone"
def.depth_filler=11 --def.depth_filler=11
def.node_stone="rocks:granite" --def.node_stone="rocks:granite"
if (def.humidity_point>80) and (def.heat_point>80) then if (def.humidity_point>80) and (def.heat_point>80) then
--def.node_filler="rocks:laterite" --def.node_filler="rocks:laterite"
end end