diff --git a/mods/MAPGEN/mcl_structures/init.lua b/mods/MAPGEN/mcl_structures/init.lua index 03b33cd5..b71f7930 100644 --- a/mods/MAPGEN/mcl_structures/init.lua +++ b/mods/MAPGEN/mcl_structures/init.lua @@ -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) diff --git a/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder.mts b/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder.mts index c551af50..0f4aa6da 100644 Binary files a/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder.mts and b/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder.mts differ diff --git a/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder_small.mts b/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder_small.mts index cc53889b..8340a9fe 100644 Binary files a/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder_small.mts and b/mods/MAPGEN/mcl_structures/schematics/mcl_structures_boulder_small.mts differ