From 22f7ac624784bc70721022699bc430bcca2f6357 Mon Sep 17 00:00:00 2001 From: Lorenz Date: Sun, 4 Sep 2022 22:21:53 +0200 Subject: added option to hide all the particles around the ashfang boss & Added option to hide the name of full health blazes around ashfang --- .../java/at/hannibal2/skyhanni/config/features/Ashfang.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/main/java/at/hannibal2/skyhanni/config/features') 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; } -- cgit