Skip to content

Commit 73113f3

Browse files
committedSep 1, 2015
Default/trees: Add not-force-placed tree schematics grown from saplings
1 parent 4d9b595 commit 73113f3

5 files changed

+4
-4
lines changed
 
Binary file not shown.
165 Bytes
Binary file not shown.
Binary file not shown.
172 Bytes
Binary file not shown.

‎mods/default/trees.lua

+4-4
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ end
360360
-- New apple tree
361361

362362
function default.grow_new_apple_tree(pos)
363-
local path = minetest.get_modpath("default") .. "/schematics/apple_tree.mts"
363+
local path = minetest.get_modpath("default") .. "/schematics/apple_tree_from_sapling.mts"
364364
minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2},
365365
path, 0, nil, false)
366366
end
@@ -369,7 +369,7 @@ end
369369
-- New jungle tree
370370

371371
function default.grow_new_jungle_tree(pos)
372-
local path = minetest.get_modpath("default") .. "/schematics/jungle_tree.mts"
372+
local path = minetest.get_modpath("default") .. "/schematics/jungle_tree_from_sapling.mts"
373373
minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2},
374374
path, 0, nil, false)
375375
end
@@ -378,7 +378,7 @@ end
378378
-- New pine tree
379379

380380
function default.grow_new_pine_tree(pos)
381-
local path = minetest.get_modpath("default") .. "/schematics/pine_tree.mts"
381+
local path = minetest.get_modpath("default") .. "/schematics/pine_tree_from_sapling.mts"
382382
minetest.place_schematic({x = pos.x - 2, y = pos.y - 1, z = pos.z - 2},
383383
path, 0, nil, false)
384384
end
@@ -387,7 +387,7 @@ end
387387
-- New acacia tree
388388

389389
function default.grow_new_acacia_tree(pos)
390-
local path = minetest.get_modpath("default") .. "/schematics/acacia_tree.mts"
390+
local path = minetest.get_modpath("default") .. "/schematics/acacia_tree_from_sapling.mts"
391391
minetest.place_schematic({x = pos.x - 4, y = pos.y - 1, z = pos.z - 4},
392392
path, random, nil, false)
393393
end

0 commit comments

Comments
 (0)
Please sign in to comment.