From 49cc46dc25b1307e3e1fc8f2d13a9288c33674f8 Mon Sep 17 00:00:00 2001 From: TomTheFurry <46843632+TomTheFurry@users.noreply.github.com> Date: Sun, 13 Mar 2022 16:15:28 +0800 Subject: [PATCH] Update Config defaults --- .../config/ILodConfigWrapperSingleton.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java b/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java index b40f8aa23..8c652f168 100644 --- a/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java +++ b/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java @@ -170,14 +170,14 @@ public interface ILodConfigWrapperSingleton extends IBindable return dropoffQuality; } - MinDefaultMax LOD_BIOME_BLENDING_MIN_DEFAULT_MAX = new MinDefaultMax(0,0,7); + MinDefaultMax LOD_BIOME_BLENDING_MIN_DEFAULT_MAX = new MinDefaultMax(0,1,7); String LOD_BIOME_BLENDING_DESC = "" + " This is the same as vanilla Biome Blending settings for Lod area. \n" + " Note that anything other than '0' will greatly effect Lod building time \n" + " and increase triangle count. The cost on chunk generation speed is also \n" + - " quite large if set to too high.\n" + + " quite large if set too high.\n" + "\n" + - " '0' equals to Vanilla Biome Blending of '1x1', \n" + + " '0' equals to Vanilla Biome Blending of '1x1' or 'OFF', \n" + " '1' equals to Vanilla Biome Blending of '3x3', \n" + " '2' equals to Vanilla Biome Blending of '5x5'... \n"; int getLodBiomeBlending();