forked from VoxeLibre/VoxeLibre
Mapgen: Rotate pumpkins randomly
This commit is contained in:
parent
680e59ee1d
commit
c914e69081
|
@ -723,7 +723,14 @@ local function register_mgv6_decorations()
|
||||||
|
|
||||||
-- Pumpkin
|
-- Pumpkin
|
||||||
minetest.register_decoration({
|
minetest.register_decoration({
|
||||||
deco_type = "simple",
|
deco_type = "schematic",
|
||||||
|
schematic = {
|
||||||
|
size = { x=1, y=2, z=1 },
|
||||||
|
data = {
|
||||||
|
{ name = "air", prob = 0 },
|
||||||
|
{ name = "mcl_farming:pumpkin_face", param1=255, },
|
||||||
|
},
|
||||||
|
},
|
||||||
place_on = {"mcl_core:dirt_with_grass"},
|
place_on = {"mcl_core:dirt_with_grass"},
|
||||||
sidelen = 16,
|
sidelen = 16,
|
||||||
noise_params = {
|
noise_params = {
|
||||||
|
@ -736,7 +743,7 @@ local function register_mgv6_decorations()
|
||||||
},
|
},
|
||||||
y_min = 3,
|
y_min = 3,
|
||||||
y_max = 29,
|
y_max = 29,
|
||||||
decoration = "mcl_farming:pumpkin_face",
|
rotation = "random",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Melon
|
-- Melon
|
||||||
|
|
Loading…
Reference in New Issue