fixed mapgen

master
Izzy 2018-11-05 18:04:48 -07:00
parent ced2c1cd5d
commit 0732ade134
1 changed files with 21 additions and 1 deletions

View File

@ -16,7 +16,27 @@ minetest.register_decoration({
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
y_min = 4,
y_max = 31000,
decoration = "gourds:vine_root",
decoration = "gourds:pumpkin_vine_root",
param2 = 4,
})
minetest.register_decoration({
deco_type = "simple",
place_on = {"default:dirt_with_grass"},
sidelen = 16,
noise_params = {
offset = 0,
scale = 0.0002,
spread = {x = 200, y = 200, z = 200},
seed = 230,
octaves = 3,
persist = 0.66
},
biomes = {"grassland", "deciduous_forest", "floatland_grassland"},
y_min = 4,
y_max = 31000,
decoration = "gourds:watermelon_vine_root",
param2 = 4,
})