Skip to content

Commit

Permalink
xp drop plugin: add positions for config
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam- committed Jul 17, 2018
1 parent 6bf3276 commit c81c863
Showing 1 changed file with 8 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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()
{
Expand All @@ -45,7 +46,8 @@ default boolean hideSkillIcons()
@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()
{
Expand All @@ -55,7 +57,8 @@ default Color getMeleePrayerColor()
@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()
{
Expand All @@ -65,7 +68,8 @@ default Color getRangePrayerColor()
@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()
{
Expand Down

0 comments on commit c81c863

Please sign in to comment.