aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-17 15:48:32 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-06-17 15:48:59 +0200
commitaf8a6ff6d636c1957bb774bb6791f13cd390cc65 (patch)
tree5aa6409546d11caf46bf0789c297001f8114ad30 /src/main/java/at/hannibal2/skyhanni/config
parent210acc597ffa1b1213ebd7482d03b13670e4cee5 (diff)
downloadskyhanni-af8a6ff6d636c1957bb774bb6791f13cd390cc65.tar.gz
skyhanni-af8a6ff6d636c1957bb774bb6791f13cd390cc65.tar.bz2
skyhanni-af8a6ff6d636c1957bb774bb6791f13cd390cc65.zip
Added dev option to show item uuid in item lore
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/DevData.java8
1 files changed, 7 insertions, 1 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 85120f929..e8061e926 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/DevData.java
@@ -42,12 +42,18 @@ public class DevData {
public boolean modMenuLog = false;
@Expose
- @ConfigOption(name = "Show internal name", desc = "Show internal names in item lores.")
+ @ConfigOption(name = "Show internal name", desc = "Show internal names in item lore.")
@ConfigEditorBoolean
@ConfigAccordionId(id = 0)
public boolean showInternalName = false;
@Expose
+ @ConfigOption(name = "Show item UUID", desc = "Show the Unique Identifier of items. in the lore.")
+ @ConfigEditorBoolean
+ @ConfigAccordionId(id = 0)
+ public boolean showItemUuid = false;
+
+ @Expose
public Position debugPos = new Position(10, 10, false, true);
@Expose