From 69a5fdc720bdb9e16a87357cec2929b52719094d Mon Sep 17 00:00:00 2001 From: James Seibel Date: Mon, 14 Oct 2024 07:40:57 -0500 Subject: [PATCH] Fix default beacon culling setting --- .../java/com/seibel/distanthorizons/core/config/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 212819194..2fd03caa4 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 @@ -715,12 +715,12 @@ public class Config .build(); public static ConfigEntry disableBeaconDistanceCulling = new ConfigEntry.Builder() - .set(false) + .set(true) .comment("" + "If false all beacons near the camera won't be drawn to prevent vanilla overdraw. \n" + "If true all beacons will be rendered. \n" + "\n" - + "Generally this should be left as false. It's main purpose is for debugging\n" + + "Generally this should be left as true. It's main purpose is for debugging\n" + "beacon updating/rendering.\n" + "") .build();