1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-06-29 21:30:26 +02:00

New wider apple tree schematic

Precisely reduce trees and logs per mapchunk division to compensate.
This commit is contained in:
Paramat
2018-08-20 23:56:00 +01:00
committed by GitHub
parent 3d02145271
commit 20b433881b
6 changed files with 128 additions and 97 deletions

View File

@ -387,7 +387,7 @@ end
function default.grow_new_apple_tree(pos)
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},
minetest.place_schematic({x = pos.x - 3, y = pos.y - 1, z = pos.z - 3},
path, "random", nil, false)
end