From 0344ab23929f77f4f339cb0dc83d84d3f118d679 Mon Sep 17 00:00:00 2001 From: hannibal2 <24389977+hannibal00212@users.noreply.github.com> Date: Wed, 12 Jul 2023 04:48:34 +0200 Subject: Added Living Metal Helper --- .../at/hannibal2/skyhanni/config/features/RiftConfig.java | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 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 3fde81172..11b415cfa 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -469,14 +469,14 @@ public class RiftConfig { } @Expose - @ConfigOption(name = "Living Metal Helper", desc = "") + @ConfigOption(name = "Defense Blocks", desc = "") @Accordion public DefenseBlockConfig defenseBlockConfig = new DefenseBlockConfig(); public static class DefenseBlockConfig { @Expose - @ConfigOption(name = "Defense Blocks", desc = "Show a line between Defense blocks and the mob and highlight the blocks.") + @ConfigOption(name = "Enabled", desc = "Show a line between Defense blocks and the mob and highlight the blocks.") @ConfigEditorBoolean public boolean enabled = true; @@ -500,10 +500,15 @@ public class RiftConfig { public static class LivingCaveLivingMetalConfig { @Expose - @ConfigOption(name = "Living Metal", desc = "Show the Living Metal.") + @ConfigOption(name = "Living Metal", desc = "Show a moving animation between Living Metal and the next block.") @ConfigEditorBoolean public boolean enabled = true; + @Expose + @ConfigOption(name = "Hide Particles", desc = "Hide particles Living Metal") + @ConfigEditorBoolean + public boolean hideParticles = false; + } } -- cgit