aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-07 04:41:11 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-10-07 04:41:11 +0200
commita0bcfd95857ee9ff1caa5eec4eec3cfe077596dc (patch)
tree48c1661bbd81927471fe62b3ea9b75c769a29ea9 /src/main/java/at/hannibal2/skyhanni/config/features
parentf25715ff6b010876cf2da64f8419bed5e2b2aa83 (diff)
downloadskyhanni-a0bcfd95857ee9ff1caa5eec4eec3cfe077596dc.tar.gz
skyhanni-a0bcfd95857ee9ff1caa5eec4eec3cfe077596dc.tar.bz2
skyhanni-a0bcfd95857ee9ff1caa5eec4eec3cfe077596dc.zip
Added more options
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
index ddc3fafde..84a8dbacb 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/MiscConfig.java
@@ -563,6 +563,32 @@ public class MiscConfig {
@ConfigOption(name = "Invert Sort", desc = "Flip the player list order on its head (also works with default rank).")
@ConfigEditorBoolean
public boolean reverseSort = false;
+
+ @Expose
+ @ConfigOption(name = "Hide Rank Color", desc = "Hide the player rank color.")
+ @ConfigEditorBoolean
+ public boolean hideRankColor = false;
+
+ @Expose
+ @ConfigOption(name = "Hide Emblems", desc = "Hide the emblems behind the player name.")
+ @ConfigEditorBoolean
+ public boolean hideEmblem = false;
+
+ @Expose
+ @ConfigOption(name = "Hide Level", desc = "Hide the SkyBlock level numbers.")
+ @ConfigEditorBoolean
+ public boolean hideLevel = false;
+
+ @Expose
+ @ConfigOption(name = "Hide Level Brackets", desc = "Hide the emblems behind the player name.")
+ @ConfigEditorBoolean
+ public boolean hideLevelBrackets = false;
+
+ @Expose
+ @ConfigOption(name = "Level Color As Name", desc = "Use the color of the skyblock level as the player color.")
+ @ConfigEditorBoolean
+ public boolean useLevelColorForName = false;
+
}
@Expose