Fix EConfigEntryAppearance.ONLY_IN_FILE

This commit is contained in:
James Seibel
2023-12-20 07:47:45 -06:00
parent 8dbeb16f33
commit 0caf164e06
@@ -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);