diff options
author | CalMWolfs <94038482+CalMWolfs@users.noreply.github.com> | 2023-06-28 08:25:08 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-28 00:25:08 +0200 |
commit | 53caebdecfffdcb3c386bc9ae412c32e8a6c709c (patch) | |
tree | e92bff6ee3a3cc7446a6e205074491db92e0f6bd /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | be8b1c2ef97ad3ce210aa4e7a771323c381dd029 (diff) | |
download | skyhanni-53caebdecfffdcb3c386bc9ae412c32e8a6c709c.tar.gz skyhanni-53caebdecfffdcb3c386bc9ae412c32e8a6c709c.tar.bz2 skyhanni-53caebdecfffdcb3c386bc9ae412c32e8a6c709c.zip |
Merge pull request #258
* highlight items missing in NEU repo
* fixed it detecting some wrong items
* Merge branch 'hannibal002:beta' into highlight_missing_neu_items
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 |