diff options
author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-12 03:03:08 +0200 |
---|---|---|
committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-12 03:03:08 +0200 |
commit | 99f7e28332662f44996e73194b9d5ea0c38e89b3 (patch) | |
tree | fc21e2b64730f278f85fa415536bac7323b70fcc /src/main/java/at/hannibal2/skyhanni/config | |
parent | a1be9b628b6006904f14a24abe3ea7d00b2dd1de (diff) | |
download | skyhanni-99f7e28332662f44996e73194b9d5ea0c38e89b3.tar.gz skyhanni-99f7e28332662f44996e73194b9d5ea0c38e89b3.tar.bz2 skyhanni-99f7e28332662f44996e73194b9d5ea0c38e89b3.zip |
Fixed typo and added hide particles
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 13 |
1 files changed, 9 insertions, 4 deletions
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.") |