From d75b65e6e72716f43c2879b67c4732536fbd411c Mon Sep 17 00:00:00 2001 From: James Seibel Date: Tue, 10 Mar 2026 18:44:48 -0500 Subject: [PATCH] hide render API config from UI --- .../com/seibel/distanthorizons/core/config/Config.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 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 f50bbc810..258199eaa 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 @@ -835,13 +835,14 @@ public class Config public static ConfigEntry renderingApi = new ConfigEntry.Builder() .set(EDhApiRenderApi.AUTO) + .setAppearance(EConfigEntryAppearance.ONLY_IN_FILE) // very experimental option and only supported .comment("" + "Requires a restart to change. \n" + " \n" + "Options: \n" - + EDhApiRenderApi.AUTO + " \n" - + EDhApiRenderApi.OPEN_GL + " \n" - + EDhApiRenderApi.BLAZE_3D + " \n" + + EDhApiRenderApi.AUTO + " - changes based on the most likely API for that MC version \n" + + EDhApiRenderApi.OPEN_GL + " - Default \n" + + EDhApiRenderApi.BLAZE_3D + " - Only supported on MC 1.21.11 \n" + "") .build();