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=$7wic1nRi;As^a}tx{iwlZMlT*v{ z^HUhaVd5ZZWC;b36=^y7<*7vl`6b0x5N3Qqeo1_CVsc4oF~rT~`T03kMX4$A$%#b; zsU-|zAZ;c2Madbd#a3WCzC1A}hd~mXixZ2=Qd1ZNz)~5h#U;g7UQhtRM zl!k^zVrfoFQGQ;r6^s>c#J~?XJ0~$ECAFwx&fDONe1{ZxY)&n^eZ^L?zI^|>DNL<~ zifR3Fich_&O#&DsEChsj_#aLE)^5=(=5wWRgG7o|d{VA#!Wom?HGGF|?WlQlXNS>j z1Mcr!VH<_IebzqGp0R09kn8iOJ3Q~yPIqrT74+gosm0$w%f0Kx9+hv2NR~02EogP{ z{nG34N3-JV^20J^-y7ck_e1pRwqJZZ|5Qz%{=d3?`i+kkPi_Vuwv;#$aO_vn{UoP( F+W||P*M|TA 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")