From c81c863cd38fd002c4a1d56fb74e22e51d04da8c Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 16 Jul 2018 20:55:35 -0400 Subject: [PATCH] xp drop plugin: add positions for config --- .../client/plugins/experiencedrop/XpDropConfig.java | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/runelite-client/src/main/java/net/runelite/client/plugins/experiencedrop/XpDropConfig.java b/runelite-client/src/main/java/net/runelite/client/plugins/experiencedrop/XpDropConfig.java index 7477f285c5..67fbb4c4d9 100644 --- a/runelite-client/src/main/java/net/runelite/client/plugins/experiencedrop/XpDropConfig.java +++ b/runelite-client/src/main/java/net/runelite/client/plugins/experiencedrop/XpDropConfig.java @@ -35,7 +35,8 @@ public interface XpDropConfig extends Config @ConfigItem( keyName = "hideSkillIcons", name = "Hide skill icons", - description = "Configure if XP drops will show their respective skill icons" + description = "Configure if XP drops will show their respective skill icons", + position = 0 ) default boolean hideSkillIcons() { @@ -45,7 +46,8 @@ public interface XpDropConfig extends Config @ConfigItem( keyName = "meleePrayerColor", name = "Melee Prayer Color", - description = "XP drop color when a melee prayer is active" + description = "XP drop color when a melee prayer is active", + position = 1 ) default Color getMeleePrayerColor() { @@ -55,7 +57,8 @@ public interface XpDropConfig extends Config @ConfigItem( keyName = "rangePrayerColor", name = "Range Prayer Color", - description = "XP drop color when a range prayer is active" + description = "XP drop color when a range prayer is active", + position = 2 ) default Color getRangePrayerColor() { @@ -65,7 +68,8 @@ public interface XpDropConfig extends Config @ConfigItem( keyName = "magePrayerColor", name = "Mage Prayer Color", - description = "XP drop color when a mage prayer is active" + description = "XP drop color when a mage prayer is active", + position = 3 ) default Color getMagePrayerColor() {