diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-23 23:19:30 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-23 23:19:30 +0200 |
commit | a21c3298d2ae7790b3d3770ee4a135c1817f3018 (patch) | |
tree | 61e2de5233857f36e9a646955536655de25c98d1 /src/main/java/at/hannibal2/skyhanni/config | |
parent | 32ed904363a0c06dddfbbc21d0a85155f3d01625 (diff) | |
download | skyhanni-a21c3298d2ae7790b3d3770ee4a135c1817f3018.tar.gz skyhanni-a21c3298d2ae7790b3d3770ee4a135c1817f3018.tar.bz2 skyhanni-a21c3298d2ae7790b3d3770ee4a135c1817f3018.zip |
Hide particles around enderman slayer bosses and mini bosses
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/SlayerConfig.java | 8 |
1 files changed, 7 insertions, 1 deletions
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,12 +30,18 @@ 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) public boolean blaze = false; |