diff --git a/src/main/java/me/cortex/voxy/client/config/VoxyConfig.java b/src/main/java/me/cortex/voxy/client/config/VoxyConfig.java index cde9fc2f..fdd624b0 100644 --- a/src/main/java/me/cortex/voxy/client/config/VoxyConfig.java +++ b/src/main/java/me/cortex/voxy/client/config/VoxyConfig.java @@ -31,7 +31,6 @@ public class VoxyConfig { public float subDivisionSize = 64; public boolean renderVanillaFog = false; public boolean useEnvironmentalFog = false; - public boolean renderStatistics = false; public boolean dontUseSodiumBuilderThreads = false; private static VoxyConfig loadOrCreate() { diff --git a/src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java b/src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java index 970c47e2..c5a0e2fe 100644 --- a/src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java +++ b/src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java @@ -136,7 +136,7 @@ public class VoxyRenderSystem { this.nodeManager::addTopLevel, this.nodeManager::removeTopLevel); - this.renderDistanceTracker.setRenderDistance(VoxyConfig.CONFIG.sectionRenderDistance); + this.setRenderDistance(VoxyConfig.CONFIG.sectionRenderDistance); } this.chunkBoundRenderer = new ChunkBoundRenderer(this.pipeline);