Add igloo basement (schematic only)

This commit is contained in:
Wuzzy 2017-05-24 05:43:01 +02:00
parent f48b1f3591
commit 086067184a
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View File

@ -176,6 +176,12 @@ mcl_structures.generate_igloo_top = function(pos)
minetest.place_schematic(newpos, path, "random", nil, true)
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)
-- No Generating for the temple ... Why using it ? No Change
local temple = mcl_structures.get_struct("desert_temple.we")