papyrus should work better with valleys mapgen
This commit is contained in:
parent
c4a2130f5f
commit
af137f81c2
@ -351,17 +351,33 @@ minetest.register_decoration(
|
|||||||
minetest.register_decoration(
|
minetest.register_decoration(
|
||||||
{
|
{
|
||||||
deco_type = "simple",
|
deco_type = "simple",
|
||||||
place_on = "default:sand",
|
place_on = {"default:sand", "default:dirt", "default:dirt_with_grass"},
|
||||||
spawn_by = "default:water_source",
|
spawn_by = {"default:water_source", "default:water_flowing"},
|
||||||
num_spawn_by = 2,
|
num_spawn_by = 1,
|
||||||
sidelen = 16,
|
sidelen = 16,
|
||||||
fill_ratio = 0.07,
|
fill_ratio = 0.08,
|
||||||
biomes = {"Grassland Ocean"},
|
biomes = {"Grassland Ocean", "Grassland", "Forest"},
|
||||||
decoration = {"default:papyrus"},
|
decoration = {"default:papyrus"},
|
||||||
height = 2,
|
height = 2,
|
||||||
height_max = 3,
|
height_max = 3,
|
||||||
y_min = 0,
|
y_min = 0,
|
||||||
y_max = 5,
|
y_max = 31000,
|
||||||
|
})
|
||||||
|
|
||||||
|
minetest.register_decoration(
|
||||||
|
{
|
||||||
|
deco_type = "simple",
|
||||||
|
place_on = {"default:sand", "default:dirt", "default:dirt_with_grass"},
|
||||||
|
spawn_by = {"default:water_source", "default:water_flowing"},
|
||||||
|
num_spawn_by = 1,
|
||||||
|
sidelen = 16,
|
||||||
|
fill_ratio = 0.22,
|
||||||
|
biomes = {"Deep Forest"},
|
||||||
|
decoration = {"default:papyrus"},
|
||||||
|
height = 2,
|
||||||
|
height_max = 3,
|
||||||
|
y_min = 0,
|
||||||
|
y_max = 31000,
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_decoration(
|
minetest.register_decoration(
|
||||||
|
Loading…
Reference in New Issue
Block a user