forked from VoxeLibre/VoxeLibre
Add igloo basement (schematic only)
This commit is contained in:
parent
f48b1f3591
commit
086067184a
Binary file not shown.
|
@ -176,6 +176,12 @@ mcl_structures.generate_igloo_top = function(pos)
|
||||||
minetest.place_schematic(newpos, path, "random", nil, true)
|
minetest.place_schematic(newpos, path, "random", nil, true)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
mcl_structures.generate_igloo_basement = function(pos, orientation)
|
||||||
|
-- TODO: Add brewing stand
|
||||||
|
local path = minetest.get_modpath("mcl_structures").."/build/igloo_basement.mts"
|
||||||
|
minetest.place_schematic(pos, path, orientation, nil, true)
|
||||||
|
end
|
||||||
|
|
||||||
mcl_structures.generate_desert_temple = function(pos)
|
mcl_structures.generate_desert_temple = function(pos)
|
||||||
-- No Generating for the temple ... Why using it ? No Change
|
-- No Generating for the temple ... Why using it ? No Change
|
||||||
local temple = mcl_structures.get_struct("desert_temple.we")
|
local temple = mcl_structures.get_struct("desert_temple.we")
|
||||||
|
|
Loading…
Reference in New Issue