Add an Y layer to moss stone boulder schematics

This commit is contained in:
Wuzzy 2017-09-10 05:03:20 +02:00
parent 1938f84c3b
commit 5a69b132c4
3 changed files with 2 additions and 1 deletions

View File

@ -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)