From 40149bc1d196eb749237c1a63b2811cc915cfe51 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Thu, 5 Mar 2026 07:23:02 -0600 Subject: [PATCH] fix chunk update queue count flipped --- .../api/internal/chunkUpdating/WorldChunkUpdateManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/api/internal/chunkUpdating/WorldChunkUpdateManager.java b/core/src/main/java/com/seibel/distanthorizons/core/api/internal/chunkUpdating/WorldChunkUpdateManager.java index 4a1cfc54b..35e3cc514 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/api/internal/chunkUpdating/WorldChunkUpdateManager.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/api/internal/chunkUpdating/WorldChunkUpdateManager.java @@ -168,7 +168,7 @@ public class WorldChunkUpdateManager // replace the first line with the number of total/active queues // (helpful if we need to diagnose a leak due to a massive number of queue level wrappers) - stringList.set(0, "Chunk Update Queues: "+totalQueueCountRef.get()+"/"+activeQueueCountRef.get()); + stringList.set(0, "Chunk Update Queues: "+activeQueueCountRef.get()+"/"+totalQueueCountRef.get()); return stringList; }