xp drop plugin: add positions for config

This commit is contained in:
Adam
2018-07-16 20:55:35 -04:00
parent 6bf32768f1
commit c81c863cd3

View File

@@ -35,7 +35,8 @@ public interface XpDropConfig extends Config
@ConfigItem( @ConfigItem(
keyName = "hideSkillIcons", keyName = "hideSkillIcons",
name = "Hide skill icons", 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() default boolean hideSkillIcons()
{ {
@@ -45,7 +46,8 @@ public interface XpDropConfig extends Config
@ConfigItem( @ConfigItem(
keyName = "meleePrayerColor", keyName = "meleePrayerColor",
name = "Melee Prayer Color", 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() default Color getMeleePrayerColor()
{ {
@@ -55,7 +57,8 @@ public interface XpDropConfig extends Config
@ConfigItem( @ConfigItem(
keyName = "rangePrayerColor", keyName = "rangePrayerColor",
name = "Range Prayer Color", 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() default Color getRangePrayerColor()
{ {
@@ -65,7 +68,8 @@ public interface XpDropConfig extends Config
@ConfigItem( @ConfigItem(
keyName = "magePrayerColor", keyName = "magePrayerColor",
name = "Mage Prayer Color", 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() default Color getMagePrayerColor()
{ {