From f822aed2852ac7a38f4b542287ee07a05937d5c3 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Fri, 29 Oct 2021 19:50:50 -0500 Subject: [PATCH] make the fog disabler config experimental and disabled by default --- src/main/java/com/seibel/lod/config/LodConfig.java | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/seibel/lod/config/LodConfig.java b/src/main/java/com/seibel/lod/config/LodConfig.java index 235e76117..004b1fab2 100644 --- a/src/main/java/com/seibel/lod/config/LodConfig.java +++ b/src/main/java/com/seibel/lod/config/LodConfig.java @@ -214,12 +214,14 @@ public class LodConfig disableVanillaFog = builder .comment("\n\n" - + " If true disable vanilla Minecraft's fog. \n\n" + + " If true disable Minecraft's fog. \n\n" + + "" + + " Experimental! May cause issues with Sodium. \n\n" + "" + " Unlike Optifine or Sodium's fog disabling option this won't change \n" + " performance (we don't actually disable the fog, we just tell it to render a infinite distance away). \n" - + " May or may not play nice with other mods edit fog. \n") - .define("Disable Vanilla Fog", true); + + " May or may not play nice with other mods that edit fog. \n") + .define("Experimental Disable Vanilla Fog", false); builder.pop(); }