From b2d5e18fe4978ba158adf2e51f4cd148b3797039 Mon Sep 17 00:00:00 2001 From: tom lee Date: Mon, 24 Jan 2022 23:36:40 +0800 Subject: [PATCH] Raised distance limits to 8192. HYPER EXPERIMENTAL!!! --- .../wrapperInterfaces/config/ILodConfigWrapperSingleton.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java b/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java index 49b7cc7e9..5695930c9 100644 --- a/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java +++ b/src/main/java/com/seibel/lod/core/wrapperInterfaces/config/ILodConfigWrapperSingleton.java @@ -98,7 +98,7 @@ public interface ILodConfigWrapperSingleton HorizontalResolution getDrawResolution(); void setDrawResolution(HorizontalResolution newHorizontalResolution); - MinDefaultMax LOD_CHUNK_RENDER_DISTANCE_MIN_DEFAULT_MAX = new MinDefaultMax(16, 64, 1024); + MinDefaultMax LOD_CHUNK_RENDER_DISTANCE_MIN_DEFAULT_MAX = new MinDefaultMax(16, 64, 8192); String LOD_CHUNK_RENDER_DISTANCE_DESC = "" + " The radius of the mod's render distance. (measured in chunks) \n"; int getLodChunkRenderDistance();