From a21c3298d2ae7790b3d3770ee4a135c1817f3018 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Sun, 23 Jul 2023 23:19:30 +0200 Subject: Hide particles around enderman slayer bosses and mini bosses --- .../java/at/hannibal2/skyhanni/config/features/SlayerConfig.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java index e3aa63c89..e5aba386f 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java @@ -30,11 +30,17 @@ public class SlayerConfig { public boolean endermanHighlightNukekebi = false; @Expose - @ConfigOption(name = "Phase Display", desc = "Show the current phase of the enderman slayer.") + @ConfigOption(name = "Phase Display", desc = "Show the current phase of the enderman slayer in damage indcator.") @ConfigEditorBoolean @ConfigAccordionId(id = 0) public boolean endermanPhaseDisplay = false; + @Expose + @ConfigOption(name = "Hide Particles", desc = "Hide particles around enderman slayer bosses and mini bosses.") + @ConfigEditorBoolean + @ConfigAccordionId(id = 0) + public boolean endermanHideParticles = false; + @Expose @ConfigOption(name = "Blaze", desc = "") @ConfigEditorAccordion(id = 1) -- cgit