Default/trees: Add not-force-placed tree schematics grown from saplings
authorparamat <mat.gregory@virginmedia.com>
Mon, 31 Aug 2015 04:54:46 +0000 (05:54 +0100)
committerparamat <mat.gregory@virginmedia.com>
Tue, 1 Sep 2015 04:57:07 +0000 (05:57 +0100)
mods/default/schematics/acacia_tree_from_sapling.mts [new file with mode: 0644]
mods/default/schematics/apple_tree_from_sapling.mts [new file with mode: 0644]
mods/default/schematics/jungle_tree_from_sapling.mts [new file with mode: 0644]
mods/default/schematics/pine_tree_from_sapling.mts [new file with mode: 0644]
mods/default/trees.lua

diff --git a/mods/default/schematics/acacia_tree_from_sapling.mts b/mods/default/schematics/acacia_tree_from_sapling.mts
new file mode 100644 (file)
index 0000000..23e8e4b
Binary files /dev/null and b/mods/default/schematics/acacia_tree_from_sapling.mts differ
diff --git a/mods/default/schematics/apple_tree_from_sapling.mts b/mods/default/schematics/apple_tree_from_sapling.mts
new file mode 100644 (file)
index 0000000..8753f2a
Binary files /dev/null and b/mods/default/schematics/apple_tree_from_sapling.mts differ
diff --git a/mods/default/schematics/jungle_tree_from_sapling.mts b/mods/default/schematics/jungle_tree_from_sapling.mts
new file mode 100644 (file)
index 0000000..39d46d7
Binary files /dev/null and b/mods/default/schematics/jungle_tree_from_sapling.mts differ
diff --git a/mods/default/schematics/pine_tree_from_sapling.mts b/mods/default/schematics/pine_tree_from_sapling.mts
new file mode 100644 (file)
index 0000000..629c5da
Binary files /dev/null and b/mods/default/schematics/pine_tree_from_sapling.mts differ
index c55708c45c424f9e9916752ced67b8cd37a10128..07cc4d73752c8c537de84f764573ddb4f69d3b62 100644 (file)
@@ -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