From 5b4029f0ad88c8033cd1ed641d0f22386faf14e4 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Wed, 20 May 2026 17:30:53 -0500 Subject: [PATCH] update comment --- .../java/com/seibel/distanthorizons/core/config/Config.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java index 9368bdcfc..ee4f2985c 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/config/Config.java @@ -1438,8 +1438,8 @@ public class Config public static ConfigEntry dataCompression = new ConfigEntry.Builder() .set(EDhApiDataCompressionMode.Z_STD_BLOCK) - // only visible via the file since there is no reason to use any compressor except ZStandard as of 2025-11-24 - // the only reason this hasn't been fully removed is due to some people having issues specifically with ZSTD + // only visible via the API since there is no reason to use any compressor except ZStandard as of 2025-11-24 + // Note: this may need to be re-visited since some people (android) have issues with ZStd .setAppearance(EConfigEntryAppearance.ONLY_IN_FILE) .build();