aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/at/hannibal2/skyhanni/config/features
diff options
context:
space:
mode:
authorLorenz <lo.scherf@gmail.com>2022-09-04 22:21:53 +0200
committerLorenz <lo.scherf@gmail.com>2022-09-04 22:21:53 +0200
commit22f7ac624784bc70721022699bc430bcca2f6357 (patch)
tree37ea1a2044c6bfe14a5c441af4ca5de4a33fbfe3 /src/main/java/at/hannibal2/skyhanni/config/features
parentf49841740f624b2c50b47f61026d50df8644689e (diff)
downloadskyhanni-22f7ac624784bc70721022699bc430bcca2f6357.tar.gz
skyhanni-22f7ac624784bc70721022699bc430bcca2f6357.tar.bz2
skyhanni-22f7ac624784bc70721022699bc430bcca2f6357.zip
added option to hide all the particles around the ashfang boss & Added option to hide the name of full health blazes around ashfang
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config/features')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java b/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java
index cbed42513..92d3b3bf4 100644
--- a/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java
+++ b/src/main/java/at/hannibal2/skyhanni/config/features/Ashfang.java
@@ -59,4 +59,14 @@ public class Ashfang {
@ConfigOption(name = "Ashfang Highlight Blazes", desc = "Highlight the different blazes in their respected color")
@ConfigEditorBoolean
public boolean highlightBlazes = false;
+
+ @Expose
+ @ConfigOption(name = "Ashfang Hide Particles", desc = "Hide all the particles around the ashfang boss")
+ @ConfigEditorBoolean
+ public boolean hideParticles = false;
+
+ @Expose
+ @ConfigOption(name = "Ashfang Hide Names", desc = "Hide the name of full health blazes around ashfang (only useful when highlight blazes is enabled)")
+ @ConfigEditorBoolean
+ public boolean hideNames = false;
}