From 2c66b795277876addffe1386e498fd1c0131218f Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Mon, 16 Oct 2023 12:11:17 +0200 Subject: code cleanup --- .../java/at/hannibal2/skyhanni/config/features/DevConfig.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 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 c1456d770..bacdcd0d5 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevConfig.java @@ -71,14 +71,14 @@ public class DevConfig { public boolean showItemUuid = false; @Expose - @ConfigOption(name = "Copy NBT Data", desc = "Copies NBT data on key press in a GUI") + @ConfigOption(name = "Copy Item Data", desc = "Copies item NBT data on key press in a GUI to clipboard.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) - public int copyNBTData = Keyboard.KEY_NONE; + public int copyItemData = Keyboard.KEY_NONE; @Expose - @ConfigOption(name = "Copy Compressed NBT Data", desc = "Copies compressed NBT data on key press in a GUI") + @ConfigOption(name = "Copy Compressed Item Data", desc = "Copies compressed item NBT data on key press in a GUI to clipboard.") @ConfigEditorKeybind(defaultKey = Keyboard.KEY_NONE) - public int copyNBTDataCompressed = Keyboard.KEY_NONE; + public int copyItemDataCompressed = Keyboard.KEY_NONE; @Expose @ConfigOption(name = "Copy RNG Meter", desc = "Copies internal names and maxed XP needed from RNG meter inventories as json to clipboard.") -- cgit