Add Sweet Berry Bush mapgen
This commit is contained in:
parent
fe1082592d
commit
f2f60ba5e4
14
mapgen.lua
14
mapgen.lua
|
@ -6,5 +6,15 @@ minetest.register_decoration({
|
|||
biomes = {"Nether"},
|
||||
y_max = mcl_vars.mg_nether_max,
|
||||
y_min = mcl_vars.mg_nether_min,
|
||||
decoration = "mc:warped_fungus", -- TODO: Add Warped and Crimson Forest and place fungus in correct biomes
|
||||
})
|
||||
decoration = "mc:warped_fungus" -- TODO: Add Warped and Crimson Forest and place fungus in correct biomes
|
||||
})
|
||||
minetest.register_decoration({
|
||||
deco_type = "simple",
|
||||
place_on = {"mcl_core:dirt_with_grass"},
|
||||
sidelen = 16,
|
||||
fill_ratio = 0.1,
|
||||
biomes = {"Taiga","Forest"},
|
||||
y_max = mcl_vars.mg_nether_max,
|
||||
y_min = mcl_vars.mg_nether_min,
|
||||
decoration = "mc:sweet_berry_bush_2"
|
||||
})
|
Loading…
Reference in New Issue