From e017d3d599f3362be35080be3c7bb96f3afc935d Mon Sep 17 00:00:00 2001 From: coolGi Date: Tue, 11 Apr 2023 00:13:04 +0930 Subject: [PATCH] Disabled lodBias by default --- core/src/main/java/com/seibel/lod/core/config/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/lod/core/config/Config.java b/core/src/main/java/com/seibel/lod/core/config/Config.java index 4e8f4efae..ab394e8ac 100644 --- a/core/src/main/java/com/seibel/lod/core/config/Config.java +++ b/core/src/main/java/com/seibel/lod/core/config/Config.java @@ -471,7 +471,7 @@ public class Config .build(); public static ConfigEntry lodBias = new ConfigEntry.Builder() // TODO: Make this a float (the ClassicConfigGUI doesnt support floats) - .setMinDefaultMax(0d, 0.5d, null) + .setMinDefaultMax(0d, 0d, null) .comment("" + "What the value of vanilla's LodBias should be \n" + "If set to 0 the mod wont overwrite vanilla's default (which so happens to also be 0)")