From 73113f344340ca75b5a77961d0d2a205566b1fe4 Mon Sep 17 00:00:00 2001 From: paramat Date: Mon, 31 Aug 2015 05:54:46 +0100 Subject: [PATCH] Default/trees: Add not-force-placed tree schematics grown from saplings --- .../schematics/acacia_tree_from_sapling.mts | Bin 0 -> 205 bytes .../schematics/apple_tree_from_sapling.mts | Bin 0 -> 165 bytes .../schematics/jungle_tree_from_sapling.mts | Bin 0 -> 245 bytes .../default/schematics/pine_tree_from_sapling.mts | Bin 0 -> 172 bytes mods/default/trees.lua | 8 ++++---- 5 files changed, 4 insertions(+), 4 deletions(-) create mode 100644 mods/default/schematics/acacia_tree_from_sapling.mts create mode 100644 mods/default/schematics/apple_tree_from_sapling.mts create mode 100644 mods/default/schematics/jungle_tree_from_sapling.mts create mode 100644 mods/default/schematics/pine_tree_from_sapling.mts diff --git a/mods/default/schematics/acacia_tree_from_sapling.mts b/mods/default/schematics/acacia_tree_from_sapling.mts new file mode 100644 index 0000000000000000000000000000000000000000..23e8e4b3a8dadb62539672269d9248d9bb6cbb76 GIT binary patch literal 205 zcmeYb3HD`RVc=xoVBoB;x332Q24)84#LOZF(UjD*#L}D+tHk8Q)YOVOZzm-3H7IbnP310T>5E%?$z@9B#N2hyUt?T1xBr;- xU%TSbQdgVF(tK=EpIrhU-M)W+2CwlY!zJqTW*k3t*>?8)`O_mA<#y}H0RTx+Sp)z8 literal 0 HcmV?d00001 diff --git a/mods/default/schematics/apple_tree_from_sapling.mts b/mods/default/schematics/apple_tree_from_sapling.mts new file mode 100644 index 0000000000000000000000000000000000000000..8753f2a97e5c5ee0c98d621fc5d7c77f49bc21e3 GIT binary patch literal 165 zcmeYb3HD`RVPIuoXJDVRmCvV@p$TGiAMLqP8RIj*i;`Nr9fzBCmF|S_FIWO#kuc z&z}l|#$eC7JvIT3wY9Z&%mK0i3*=OO&1XEuB=qys*G~qjUwPCQ;?`Y*km z^-h}gl%_zgbwLySwcmC%wohOC&hUJcyZ~#V#oWT@^Rn{Gt8dkO+_U@n&w20K|DT)p zdEdkMhL$X=iGqg36L>czaw-K)HaQjIHBFai=_Z*=fliA|z6CUDt@X+|U3cp15{>%{ eE?@Fm7`VJJ^p`}$R*RN{m+kAAbXx3{kc5@1x%z|6p$m|4Uil9HO1SejE}RgjsN8lRV%nv#=R z%piy&T2hpnS}`X%K|#{skmALrknWQ<;oQTm zCEG8U?>+MT`t#$$r;l=edM)|tv*fGSuR9+a88k@#f2bo7$lsVy%ChrH5jUU1+yY6~ L5C#V2DSEvC-*7}5 literal 0 HcmV?d00001 diff --git a/mods/default/trees.lua b/mods/default/trees.lua index c55708c4..07cc4d73 100644 --- a/mods/default/trees.lua +++ b/mods/default/trees.lua @@ -360,7 +360,7 @@ end -- New apple tree function default.grow_new_apple_tree(pos) - local path = minetest.get_modpath("default") .. "/schematics/apple_tree.mts" + local path = minetest.get_modpath("default") .. "/schematics/apple_tree_from_sapling.mts" minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2}, path, 0, nil, false) end @@ -369,7 +369,7 @@ end -- New jungle tree function default.grow_new_jungle_tree(pos) - local path = minetest.get_modpath("default") .. "/schematics/jungle_tree.mts" + local path = minetest.get_modpath("default") .. "/schematics/jungle_tree_from_sapling.mts" minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2}, path, 0, nil, false) end @@ -378,7 +378,7 @@ end -- New pine tree function default.grow_new_pine_tree(pos) - local path = minetest.get_modpath("default") .. "/schematics/pine_tree.mts" + local path = minetest.get_modpath("default") .. "/schematics/pine_tree_from_sapling.mts" minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2}, path, 0, nil, false) end @@ -387,7 +387,7 @@ end -- New acacia tree function default.grow_new_acacia_tree(pos) - local path = minetest.get_modpath("default") .. "/schematics/acacia_tree.mts" + local path = minetest.get_modpath("default") .. "/schematics/acacia_tree_from_sapling.mts" minetest.place_schematic({x = pos.x - 4, y = pos.y - 1, z = pos.z - 4}, path, random, nil, false) end