From 3fe60946be21cac9243655e4a74503d33ecba722 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Sat, 14 Dec 2024 12:20:09 -0600 Subject: [PATCH] Revert "put shared api particle behind debug config" This reverts commit 23021153dab80e8e74216fed3dfd4d198c1d7399. --- .../core/api/internal/SharedApi.java | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/api/internal/SharedApi.java b/core/src/main/java/com/seibel/distanthorizons/core/api/internal/SharedApi.java index 5b3a915de..7f20849bb 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/api/internal/SharedApi.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/api/internal/SharedApi.java @@ -363,15 +363,12 @@ public class SharedApi processUpdateChunkData(updateData); - if (Config.Client.Advanced.Debugging.DebugWireframe.showFullDataUpdateStatus.get()) - { - DebugRenderer.makeParticle( - new DebugRenderer.BoxParticle( - new DebugRenderer.Box(DhSectionPos.encodeContaining(LodUtil.CHUNK_DETAIL_LEVEL, chunkWrapper.getChunkPos()), 128f, 156f, 0.09f, Color.RED) - , 0.2, 32f - ) - ); - } + DebugRenderer.makeParticle( + new DebugRenderer.BoxParticle( + new DebugRenderer.Box(DhSectionPos.encodeContaining(LodUtil.CHUNK_DETAIL_LEVEL, chunkWrapper.getChunkPos()), 128f, 156f, 0.09f, Color.RED) + ,0.2, 32f + ) + ); UPDATE_POS_MANAGER.removeItem(chunkWrapper.getChunkPos()); }