From 5d72571c4af4b1dc7f17cd5eafaf704a82a9bf80 Mon Sep 17 00:00:00 2001 From: Amnet Date: Mon, 21 Oct 2013 18:34:39 +0200 Subject: [PATCH] Fixing the sacred oak sapling tree gen. --- .../biomesoplenty/worldgen/tree/WorldGenMassiveTree.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java b/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java index 67da54958..7f89d8ae1 100644 --- a/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java +++ b/common/biomesoplenty/worldgen/tree/WorldGenMassiveTree.java @@ -26,8 +26,8 @@ public class WorldGenMassiveTree extends WorldGenerator double heightAttenuation = 0.45D; double branchDensity = 5.0D; double branchSlope = 0.45D; - double scaleWidth = 4.0D; - double leafDensity = 5.0D; + double scaleWidth = 1.0D; + double leafDensity = 1.0D; /** * Currently always 1, can be set to 2 in the class constructor to generate a double-sized tree trunk for big trees. @@ -37,12 +37,12 @@ public class WorldGenMassiveTree extends WorldGenerator /** * Sets the limit of the random value used to initialize the height limit. */ - int heightLimitLimit = 45; + int heightLimitLimit = 12; /** * Sets the distance limit for how far away the generator will populate leaves from the base leaf node. */ - int leafDistanceLimit = 4; + int leafDistanceLimit = 5; /** Contains a list of a points at which to generate groups of leaves. */ int[][] leafNodes;