From afe41a10b5bd1982e4f5eb58911ffb319fccf082 Mon Sep 17 00:00:00 2001 From: mcrcortex <18544518+MCRcortex@users.noreply.github.com> Date: Sun, 14 Dec 2025 23:43:03 +1000 Subject: [PATCH] perf tweek --- .../client/core/rendering/hierachical/AsyncNodeManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/AsyncNodeManager.java b/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/AsyncNodeManager.java index 0d006a9f..495fdafb 100644 --- a/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/AsyncNodeManager.java +++ b/src/main/java/me/cortex/voxy/client/core/rendering/hierachical/AsyncNodeManager.java @@ -249,7 +249,7 @@ public class AsyncNodeManager { //Limit uploading as well as by geometry capacity being available // must have 50 mb of free geometry space to upload - for (int limit = 0; limit < 200 && ((this.geometryCapacity-this.geometryManager.getGeometryUsedBytes())>50_000_000L); limit++) { + for (int limit = 0; limit < 300 && ((this.geometryCapacity-this.geometryManager.getGeometryUsedBytes())>50_000_000L); limit++) { var job = this.geometryUpdateQueue.poll(); if (job == null) break;