diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 23:03:09 +0100 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-03-25 23:03:09 +0100 |
commit | 7349948b89c569afeb500a19a752d9ec15ad008c (patch) | |
tree | 6c5b44ad75e84cd398fd087f02e90786efe4cfaf /src/main/java/at/hannibal2/skyhanni/config | |
parent | a65700eb165589403f28ec3f6e6d3dcd450a0719 (diff) | |
download | skyhanni-7349948b89c569afeb500a19a752d9ec15ad008c.tar.gz skyhanni-7349948b89c569afeb500a19a752d9ec15ad008c.tar.bz2 skyhanni-7349948b89c569afeb500a19a752d9ec15ad008c.zip |
Added Colored Name - Show the visitor name in the color of the rarity
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/Garden.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java index d630f8259..559bb68d3 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/Garden.java @@ -137,6 +137,12 @@ public class Garden { public int visitorHighlightStatus = 2; @Expose + @ConfigOption(name = "Colored Name", desc = "Show the visitor name in the color of the rarity.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 1) + public boolean visitorColoredName = true; + + @Expose @ConfigOption(name = "Numbers", desc = "") @ConfigEditorAccordion(id = 5) public boolean numbers = false; |