From ce4259d98f3110c9668bf20988da53be88d5ae1f Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 7 Sep 2024 14:22:41 -0500 Subject: [PATCH] add brown mushrooms to the list of ignored blocks to fix swamp issues --- .../java/com/seibel/distanthorizons/core/config/Config.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java index ff1c35073..8dc3aa9df 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java @@ -886,7 +886,7 @@ public class Config .build(); public static ConfigEntry ignoredRenderBlockCsv = new ConfigEntry.Builder() - .set("minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire") + .set("minecraft:barrier,minecraft:structure_void,minecraft:light,minecraft:tripwire,minecraft:brown_mushroom") .comment("" + "A comma separated list of block resource locations that won't be rendered by DH. \n" + "Note: air is always included in this list. \n"