From c4f799ff530e6842c97d94a545fab89b9056bf7f Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Mon, 15 Dec 2025 10:01:51 +1000 Subject: [PATCH] things --- src/main/java/me/cortex/voxy/client/config/VoxyConfig.java | 1 - src/main/java/me/cortex/voxy/client/core/VoxyRenderSystem.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 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);