Skip to content

Commit 094ad00

Browse files
committedFeb 19, 2018
Schematics: Various improvements
Acacia bush: Create a unique form different to normal bush, with more leaf nodes at top than at base. Acacia tree: Maximum height increased by 1 node. 2 extra nodes of height variation. Jungle tree: Add an extra node of height variation. Y-slices moved downwards to be more balanced between trunk and branches, makes branches more common. Pine tree: Increase maximum height by 1 node. Add an extra node of height variation. Update sapling 'on place' protection checks for acacia and pine trees.
1 parent b90aabe commit 094ad00

9 files changed

+2
-2
lines changed
 

‎mods/default/nodes.lua

+2-2
Original file line numberDiff line numberDiff line change
@@ -882,7 +882,7 @@ minetest.register_node("default:pine_sapling", {
882882
-- minp, maxp to be checked, relative to sapling pos
883883
-- minp_relative.y = 1 because sapling pos has been checked
884884
{x = -2, y = 1, z = -2},
885-
{x = 2, y = 12, z = 2},
885+
{x = 2, y = 14, z = 2},
886886
-- maximum interval of interior volume check
887887
4)
888888

@@ -962,7 +962,7 @@ minetest.register_node("default:acacia_sapling", {
962962
-- minp, maxp to be checked, relative to sapling pos
963963
-- minp_relative.y = 1 because sapling pos has been checked
964964
{x = -4, y = 1, z = -4},
965-
{x = 4, y = 6, z = 4},
965+
{x = 4, y = 7, z = 4},
966966
-- maximum interval of interior volume check
967967
4)
968968

1 Byte
Binary file not shown.
3 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.

‎mods/default/schematics/pine_tree.mts

2 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)
Please sign in to comment.