From bfa13583e3061551352e74b44cc51ba5f31b5ebc Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Wed, 21 Jul 2021 11:33:42 +0200 Subject: [PATCH] Sapling now called tree --- .../java/com/volmit/iris/engine/object/IrisDimension.java | 4 ++-- .../com/volmit/iris/engine/object/IrisObjectPlacement.java | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/volmit/iris/engine/object/IrisDimension.java b/src/main/java/com/volmit/iris/engine/object/IrisDimension.java index 91ba03a51..189360432 100644 --- a/src/main/java/com/volmit/iris/engine/object/IrisDimension.java +++ b/src/main/java/com/volmit/iris/engine/object/IrisDimension.java @@ -76,8 +76,8 @@ public class IrisDimension extends IrisRegistrant { @Desc("Improves the biome grid variation by shuffling the cell grid more depending on the seed. This makes biomes across multiple seeds look far different than before.") private boolean aggressiveBiomeReshuffle = false; - @Desc("Sapling override settings") - private IrisTreeSettings saplingSettings = new IrisTreeSettings(); + @Desc("Tree growth override settings") + private IrisTreeSettings treeSettings = new IrisTreeSettings(); @Desc("Instead of a flat bottom, applies a clamp (using this noise style) to the bottom instead of a flat bottom. Useful for carving out center-dimensions in a dimension composite world.") diff --git a/src/main/java/com/volmit/iris/engine/object/IrisObjectPlacement.java b/src/main/java/com/volmit/iris/engine/object/IrisObjectPlacement.java index 308a3a742..ab1c8e1b6 100644 --- a/src/main/java/com/volmit/iris/engine/object/IrisObjectPlacement.java +++ b/src/main/java/com/volmit/iris/engine/object/IrisObjectPlacement.java @@ -61,7 +61,7 @@ public class IrisObjectPlacement { @MaxNumber(1) @Desc("The maximum layer level of a snow filter overtop of this placement. Set to 0 to disable. Max of 1.") private double snow = 0; - + @MinNumber(0) @MaxNumber(1) @Desc("The chance for this to place in a chunk. If you need multiple per chunk, set this to 1 and use density.")