mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-22 10:31:06 +01:00
Add an Y layer to moss stone boulder schematics
This commit is contained in:
parent
1938f84c3b
commit
5a69b132c4
3 changed files with 2 additions and 1 deletions
|
@ -200,7 +200,8 @@ mcl_structures.generate_boulder = function(pos)
|
|||
path = minetest.get_modpath("mcl_structures").."/schematics/mcl_structures_boulder.mts"
|
||||
end
|
||||
|
||||
minetest.place_schematic(pos, path)
|
||||
local newpos = {x=pos.x,y=pos.y-1,z=pos.z}
|
||||
minetest.place_schematic(newpos, path)
|
||||
end
|
||||
|
||||
mcl_structures.generate_witch_hut = function(pos)
|
||||
|
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue