From 086067184a91842b645d6da558ce42a4d28fa980 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Wed, 24 May 2017 05:43:01 +0200 Subject: [PATCH] Add igloo basement (schematic only) --- .../mcl_structures/build/igloo_basement.mts | Bin 0 -> 526 bytes mods/MAPGEN/mcl_structures/init.lua | 6 ++++++ 2 files changed, 6 insertions(+) create mode 100644 mods/MAPGEN/mcl_structures/build/igloo_basement.mts diff --git a/mods/MAPGEN/mcl_structures/build/igloo_basement.mts b/mods/MAPGEN/mcl_structures/build/igloo_basement.mts new file mode 100644 index 0000000000000000000000000000000000000000..8fcd7eb935b95ba20a0aa3865cf9f45a70f5e3bc GIT binary patch literal 526 zcmeYb3HD`RVPI!qW#Fs_0S0~s;oRh$_~iVeRIB2W{JhkpqRixM1_>;Jx%tJ#l?+l? zWRi;#le1G(7?=|?ix~JT3KH{Di>;Cpi{jIA5=$7wic5gv#a6{RiAnLr1x2OFspa|k zDGcH;aga2!gaXKlw4D6%)S`m?l42_eGakr}PfkoODJ_P$8E8n3RZ(gRP_U>V6=)Ag zTSn3KaGiOt1{MP)z-3xK77>VdX^w3R?i&MM7LP0FvZg3{2?NG#1s zDay|Ss)VxQjTrdhX6GcPq@)&A%y}Dpk?)WKkIkuNx3Abr)|c;JH-)LyP%*7vPVuQ% zwMhVjgoS_*5C5a7-`Xvj#eA+5ZjeZ^iciXwO*mtcyN2)3tsOOw?(8s{ZNUAVD{P}s zx6j%~+A}uo337e@bcg4i+Uf4Cr-EL*D7E+-Xt{U2*rW0-5y>)!vjwdVzF&Gh{%BTw yU4B@m?0du8|9*&G-S&%b=bx(S)BjhuPrvce;>pe6!o7aZ` literal 0 HcmV?d00001 diff --git a/mods/MAPGEN/mcl_structures/init.lua b/mods/MAPGEN/mcl_structures/init.lua index 2c0b3283f..f0c5a0bbf 100644 --- a/mods/MAPGEN/mcl_structures/init.lua +++ b/mods/MAPGEN/mcl_structures/init.lua @@ -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")