forked from MineClone5/MineClone5
Shorten fallen logs (long logs cause problems)
This commit is contained in:
parent
57c3a45248
commit
787832429a
|
@ -1520,21 +1520,18 @@ local function register_decorations()
|
|||
y_min = 1,
|
||||
y_max = mcl_vars.mg_overworld_max,
|
||||
schematic = {
|
||||
size = {x = 5, y = 3, z = 1},
|
||||
size = {x = 4, y = 3, z = 1},
|
||||
data = {
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_core:sprucetree", param2 = 12, prob = 127},
|
||||
{name = "mcl_core:sprucetree", param2 = 12},
|
||||
{name = "mcl_core:sprucetree", param2 = 12},
|
||||
{name = "mcl_core:sprucetree", param2 = 12},
|
||||
{name = "mcl_core:sprucetree", param2 = 12, prob = 127},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_mushrooms:mushroom_brown", prob = 160},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_mushrooms:mushroom_red", prob = 160},
|
||||
{name = "air", prob = 0},
|
||||
},
|
||||
|
@ -1559,17 +1556,14 @@ local function register_decorations()
|
|||
y_min = 1,
|
||||
y_max = mcl_vars.mg_overworld_max,
|
||||
schematic = {
|
||||
size = {x = 4, y = 3, z = 1},
|
||||
size = {x = 3, y = 3, z = 1},
|
||||
data = {
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_core:birchtree", param2 = 12},
|
||||
{name = "mcl_core:birchtree", param2 = 12},
|
||||
{name = "mcl_core:birchtree", param2 = 12},
|
||||
{name = "mcl_core:birchtree", param2 = 12, prob = 127},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_mushrooms:mushroom_red", prob = 100},
|
||||
{name = "mcl_mushrooms:mushroom_brown", prob = 10},
|
||||
{name = "air", prob = 0},
|
||||
|
@ -1588,26 +1582,20 @@ local function register_decorations()
|
|||
y_min = 1,
|
||||
y_max = mcl_vars.mg_overworld_max,
|
||||
schematic = {
|
||||
size = {x = 6, y = 3, z = 1},
|
||||
size = {x = 4, y = 3, z = 1},
|
||||
data = {
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_core:jungletree", param2 = 12, prob = 127},
|
||||
{name = "mcl_core:jungletree", param2 = 12},
|
||||
{name = "mcl_core:jungletree", param2 = 12},
|
||||
{name = "mcl_core:jungletree", param2 = 12},
|
||||
{name = "mcl_core:jungletree", param2 = 12},
|
||||
{name = "mcl_core:jungletree", param2 = 12, prob = 127},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_mushrooms:mushroom_brown", prob = 50},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
},
|
||||
},
|
||||
flags = "place_center_x",
|
||||
|
@ -1630,20 +1618,17 @@ local function register_decorations()
|
|||
y_min = 1,
|
||||
y_max = mcl_vars.mg_overworld_max,
|
||||
schematic = {
|
||||
size = {x = 4, y = 3, z = 1},
|
||||
size = {x = 3, y = 3, z = 1},
|
||||
data = {
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_core:tree", param2 = 12, prob = 127},
|
||||
{name = "mcl_core:tree", param2 = 12},
|
||||
{name = "mcl_core:tree", param2 = 12},
|
||||
{name = "mcl_core:tree", param2 = 12, prob = 127},
|
||||
{name = "air", prob = 0},
|
||||
{name = "mcl_mushrooms:mushroom_brown", prob = 96},
|
||||
{name = "mcl_mushrooms:mushroom_red", prob = 96},
|
||||
{name = "air", prob = 0},
|
||||
},
|
||||
},
|
||||
flags = "place_center_x",
|
||||
|
|
Loading…
Reference in New Issue