From bc417d587d2ce2ba904809a3a02f84c3369d49c9 Mon Sep 17 00:00:00 2001 From: Broooklyn <54762282+Broooklyn@users.noreply.github.com> Date: Tue, 7 Jul 2020 13:46:39 -0400 Subject: [PATCH] agility: Add Hallowed Sepulchre config section --- .../client/plugins/agility/AgilityConfig.java | 28 +++++++++++++------ 1 file changed, 20 insertions(+), 8 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java index 2771e6ad5b..de9962d678 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/agility/AgilityConfig.java @@ -28,11 +28,19 @@ import java.awt.Color; import net.runelite.client.config.Config; import net.runelite.client.config.ConfigGroup; import net.runelite.client.config.ConfigItem; +import net.runelite.client.config.ConfigSection; import net.runelite.client.config.Units; @ConfigGroup("agility") public interface AgilityConfig extends Config { + @ConfigSection( + name = "Hallowed Sepulchre", + description = "Settings for Hallowed Sepulchre highlights", + position = 17 + ) + String sepulchreSection = "Hallowed Sepulchre"; + @ConfigItem( keyName = "showClickboxes", name = "Show Clickboxes", @@ -223,9 +231,10 @@ public interface AgilityConfig extends Config @ConfigItem( keyName = "highlightSepulchreNpcs", - name = "Highlight Sepulchre Projectiles", + name = "Highlight Projectiles", description = "Highlights arrows and swords in the Sepulchre", - position = 17 + position = 17, + section = sepulchreSection ) default boolean highlightSepulchreNpcs() { @@ -234,9 +243,10 @@ public interface AgilityConfig extends Config @ConfigItem( keyName = "sepulchreHighlightColor", - name = "Sepulchre Highlight", + name = "Projectile Color", description = "Overlay color for arrows and swords", - position = 18 + position = 18, + section = sepulchreSection ) default Color sepulchreHighlightColor() { @@ -245,9 +255,10 @@ public interface AgilityConfig extends Config @ConfigItem( keyName = "highlightSepulchreObstacles", - name = "Highlight Sepulchre Obstacles", + name = "Highlight Obstacles", description = "Highlights pillars and stairs in the Sepulchre", - position = 19 + position = 19, + section = sepulchreSection ) default boolean highlightSepulchreObstacles() { @@ -256,9 +267,10 @@ public interface AgilityConfig extends Config @ConfigItem( keyName = "highlightSepulchreSkilling", - name = "Highlight Sepulchre Skill Challenges", + name = "Highlight Skill Challenges", description = "Highlights skilling challenges in the Sepulchre", - position = 20 + position = 20, + section = sepulchreSection ) default boolean highlightSepulchreSkilling() {