diff options
| author | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-12 02:53:31 +0200 |
|---|---|---|
| committer | hannibal2 <24389977+hannibal00212@users.noreply.github.com> | 2023-07-12 02:53:31 +0200 |
| commit | a1be9b628b6006904f14a24abe3ea7d00b2dd1de (patch) | |
| tree | fd6d9de0a7cce654c2d2b58c6b5de62e270344ce /src/main/java/at/hannibal2/skyhanni/config | |
| parent | 407221c659f4cee2c81fbd50eaeaca77481cc6c6 (diff) | |
| download | skyhanni-a1be9b628b6006904f14a24abe3ea7d00b2dd1de.tar.gz skyhanni-a1be9b628b6006904f14a24abe3ea7d00b2dd1de.tar.bz2 skyhanni-a1be9b628b6006904f14a24abe3ea7d00b2dd1de.zip | |
finished defence blocks
Diffstat (limited to 'src/main/java/at/hannibal2/skyhanni/config')
| -rw-r--r-- | src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java | 35 |
1 files changed, 31 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 ff1679b0d..393fb28dd 100644 --- a/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java +++ b/src/main/java/at/hannibal2/skyhanni/config/features/RiftConfig.java @@ -447,7 +447,6 @@ public class RiftConfig { public static class LivingCaveConfig { - @Expose @ConfigOption(name = "Living Metal Suit Progress", desc = "") @Accordion @@ -470,9 +469,37 @@ public class RiftConfig { } @Expose - @ConfigOption(name = "Defence Blocks", desc = "Show the defence blocks.") - @ConfigEditorBoolean - public boolean defenceBlocks = true; + @ConfigOption(name = "Living Metal Helper", desc = "") + @Accordion + public DefenceBlockConfig defenceBlockConfig = new DefenceBlockConfig(); + + public static class DefenceBlockConfig { + + @Expose + @ConfigOption(name = "Defence Blocks", desc = "Show a line between the defence blocks and the mob and highlight the blocks.") + @ConfigEditorBoolean + public boolean enabled = false; + + @Expose + @ConfigOption(name = "Color", desc = "Set the color of the lines, blocks and the entity.") + @ConfigEditorColour + public Property<String> color = Property.of("0:255:77:104:255"); + + } + + @Expose + @ConfigOption(name = "Living Metal Helper", desc = "") + @Accordion + public LivingCaveLivingMetalConfig livingCaveLivingMetalConfig = new LivingCaveLivingMetalConfig(); + + public static class LivingCaveLivingMetalConfig { + + @Expose + @ConfigOption(name = "Living Metal", desc = "Show the Living Metal.") + @ConfigEditorBoolean + public boolean enabled = true; + + } } @Expose |
