diff options
author | Walker Selby <git@walkerselby.com> | 2023-10-16 11:10:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-16 12:10:25 +0200 |
commit | 560cdada4b3577fb83c39c5cac62409093055103 (patch) | |
tree | 1acb9584b486e1d1c71f02ccc3314f7fd9da72a4 /src/main/java/at/hannibal2/skyhanni/config/features | |
parent | 94e6c479359c68d7dbf9b657aad86ab3fa12e525 (diff) | |
download | skyhanni-560cdada4b3577fb83c39c5cac62409093055103.tar.gz skyhanni-560cdada4b3577fb83c39c5cac62409093055103.tar.bz2 skyhanni-560cdada4b3577fb83c39c5cac62409093055103.zip |
Add NBT Copy Keybind (#562)
created more useful copy item data keybind #562
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java index edf6391b4..c1456d770 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java @@ -71,7 +71,12 @@ public class DevConfig { public boolean showItemUuid = false; @Expose - @ConfigOption(name = "Copy NBT Data", desc = "Copies compressed NBT data on key press in a GUI") + @ConfigOption(name = "Copy NBT Data", desc = "Copies NBT data on key press in a GUI") + @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) + public int copyNBTData = Keyboard.KEY_NONE; + + @Expose + @ConfigOption(name = "Copy Compressed NBT Data", desc = "Copies compressed NBT data on key press in a GUI") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) public int copyNBTDataCompressed = Keyboard.KEY_NONE; @@ -81,7 +86,7 @@ public class DevConfig { public boolean copyRngMeter = false; @Expose - @ConfigOption(name = "Copy Bestiary Data", desc = "Copies the bestiary data from the inventory as json to clipboard.") + @ConfigOption(name = "Copy Bestiary Data", desc = "Copies the bestiary data from the inventory as json to clipboard.") @ConfigEditorBoolean public boolean copyBestiaryData = false; |