From 99f7e28332662f44996e73194b9d5ea0c38e89b3 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 12 Jul 2023 03:03:08 +0200 Subject: Fixed typo and added hide particles --- .../at/hannibal2/skyhanni/config/features/RiftConfig.java | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'src/main/java/at/hannibal2/skyhanni/config') diff --git a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java index 393fb28dd..3fde81172 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -471,14 +471,19 @@ public class RiftConfig { @Expose @ConfigOption(name = "Living Metal Helper", desc = "") @Accordion - public DefenceBlockConfig defenceBlockConfig = new DefenceBlockConfig(); + public DefenseBlockConfig defenseBlockConfig = new DefenseBlockConfig(); - public static class DefenceBlockConfig { + public static class DefenseBlockConfig { @Expose - @ConfigOption(name = "Defence Blocks", desc = "Show a line between the defence blocks and the mob and highlight the blocks.") + @ConfigOption(name = "Defense Blocks", desc = "Show a line between Defense blocks and the mob and highlight the blocks.") @ConfigEditorBoolean - public boolean enabled = false; + public boolean enabled = true; + + @Expose + @ConfigOption(name = "Hide Particles", desc = "Hide particles around Defense Blocks") + @ConfigEditorBoolean + public boolean hideParticles = false; @Expose @ConfigOption(name = "Color", desc = "Set the color of the lines, blocks and the entity.") -- cgit