From 560cdada4b3577fb83c39c5cac62409093055103 Mon Sep 17 00:00:00 2001 From: Walker Selby Date: Mon, 16 Oct 2023 11:10:25 +0100 Subject: Add NBT Copy Keybind (#562) created more useful copy item data keybind #562 --- .../java/at/hannibal2/skyhanni/config/features/DevConfig.java | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') 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; -- cgit