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();