[nalc_mediterranean] Corrige spawn saplings
This commit is contained in:
parent
6a59c140ff
commit
63206e7b19
@ -81,15 +81,15 @@ local function grow_umbrella_pine(pos)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function grow_maritime_pine(pos)
|
local function grow_maritime_pine(pos)
|
||||||
minetest.place_schematic({x= pos.x -4, y = pos.y - 1, z = pos.z - 4}, path.."/pin_maritime.mts", "0", nil, true)
|
minetest.place_schematic({x= pos.x -3, y = pos.y - 1, z = pos.z - 3}, path.."/pin_maritime.mts", "0", nil, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function grow_cypress(pos)
|
local function grow_cypress(pos)
|
||||||
minetest.place_schematic({x= pos.x -4, y = pos.y - 1, z = pos.z - 4}, path.."/cypres.mts", "0", nil, true)
|
minetest.place_schematic({x= pos.x -3, y = pos.y - 1, z = pos.z - 3}, path.."/cypres.mts", "0", nil, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function grow_olive_tree(pos)
|
local function grow_olive_tree(pos)
|
||||||
minetest.place_schematic({x= pos.x -4, y = pos.y - 1, z = pos.z - 4}, path.."/olivier.mts", "random", nil, true)
|
minetest.place_schematic({x= pos.x -3, y = pos.y - 1, z = pos.z - 3}, path.."/olivier.mts", "random", nil, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function grow_sapling(pos)
|
local function grow_sapling(pos)
|
||||||
@ -136,20 +136,20 @@ local trees = {
|
|||||||
},
|
},
|
||||||
{ description = "Maritime Pine Sapling",
|
{ description = "Maritime Pine Sapling",
|
||||||
sapling = "nalc_mediterranean:sapling_maritime_pine",
|
sapling = "nalc_mediterranean:sapling_maritime_pine",
|
||||||
minp = {x = -4, y = 1, z = -4},
|
minp = {x = -3, y = 1, z = -3},
|
||||||
maxp = {x = 4, y = 14, z = 4},
|
maxp = {x = 3, y = 14, z = 3},
|
||||||
texture = "default_pine_sapling.png",
|
texture = "default_pine_sapling.png",
|
||||||
},
|
},
|
||||||
{ description = "Cypress Sapling",
|
{ description = "Cypress Sapling",
|
||||||
sapling = "nalc_mediterranean:sapling_cypress",
|
sapling = "nalc_mediterranean:sapling_cypress",
|
||||||
minp = {x = -4, y = 1, z = -4},
|
minp = {x = -3, y = 1, z = -3},
|
||||||
maxp = {x = 4, y = 19, z = 4},
|
maxp = {x = 3, y = 19, z = 3},
|
||||||
texture = "default_pine_sapling.png",
|
texture = "default_pine_sapling.png",
|
||||||
},
|
},
|
||||||
{ description = "Olive Sapling",
|
{ description = "Olive Sapling",
|
||||||
sapling = "nalc_mediterranean:sapling_olive",
|
sapling = "nalc_mediterranean:sapling_olive",
|
||||||
minp = {x = -4, y = 1, z = -4},
|
minp = {x = -3, y = 1, z = -3},
|
||||||
maxp = {x = 4, y = 9, z = 4},
|
maxp = {x = 3, y = 9, z = 3},
|
||||||
texture = "default_sapling.png",
|
texture = "default_sapling.png",
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user