Skip to content

Commit

Permalink
Default/trees: Add not-force-placed tree schematics grown from saplings
Browse files Browse the repository at this point in the history
  • Loading branch information
paramat committed Sep 1, 2015
1 parent 4d9b595 commit 73113f3
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 4 deletions.
Binary file added mods/default/schematics/acacia_tree_from_sapling.mts
Binary file not shown.
Binary file added mods/default/schematics/apple_tree_from_sapling.mts
Binary file not shown.
Binary file added mods/default/schematics/jungle_tree_from_sapling.mts
Binary file not shown.
Binary file added mods/default/schematics/pine_tree_from_sapling.mts
Binary file not shown.
8 changes: 4 additions & 4 deletions mods/default/trees.lua
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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

0 comments on commit 73113f3

Please sign in to comment.