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() {