From 0caf164e06de78447a091a9bef20b03aef771e44 Mon Sep 17 00:00:00 2001 From: James Seibel Date: Wed, 20 Dec 2023 07:47:45 -0600 Subject: [PATCH] Fix EConfigEntryAppearance.ONLY_IN_FILE --- .../core/config/types/enums/EConfigEntryAppearance.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/com/seibel/distanthorizons/core/config/types/enums/EConfigEntryAppearance.java b/core/src/main/java/com/seibel/distanthorizons/core/config/types/enums/EConfigEntryAppearance.java index 24dd3fd51..6366f57b0 100644 --- a/core/src/main/java/com/seibel/distanthorizons/core/config/types/enums/EConfigEntryAppearance.java +++ b/core/src/main/java/com/seibel/distanthorizons/core/config/types/enums/EConfigEntryAppearance.java @@ -32,7 +32,7 @@ public enum EConfigEntryAppearance /** Will only show the option in the UI. The option will be reverted on game restart */ ONLY_IN_GUI(true, false), /** Only show the option in the file. There would be no way to access it using the UI */ - ONLY_IN_FILE(true, false), + ONLY_IN_FILE(false, true), /** The option is only available via code. Generally this is only used for deprecated options. */ ONLY_IN_API(false, false);