diff options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DevData.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java index 77a0fcf33..1fb5a2be1 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java @@ -48,6 +48,12 @@ public class DevData { public boolean showInternalName = false; @Expose + @ConfigOption(name = "Show empty internal names", desc = "Shows internal name even if it is blank.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean showEmptyNames = false; + + @Expose @ConfigOption(name = "Show item UUID", desc = "Show the Unique Identifier of items. in the lore.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) @@ -60,6 +66,12 @@ public class DevData { public boolean copyRngMeter = false; @Expose + @ConfigOption(name = "Highlight Missing Repo Items", desc = "Highlights each item in the current inventory that is not in your current NEU repo.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean highlightMissingRepo = false; + + @Expose public Position debugPos = new Position(10, 10, false, true); @Expose |
