Update XpGlobesConfig.java

This commit is contained in:
Kyleeld
2019-05-08 09:42:08 +01:00
committed by GitHub
parent 9ced979bf8
commit a17d3b443b

View File

@@ -55,11 +55,22 @@ public interface XpGlobesConfig extends Config
return false;
}
@ConfigItem(
keyName = "Time to level",
name = "Display TTL",
description = "Displays time left to level",
position = 2
)
default boolean enableTimeToLevel()
{
return true;
}
@ConfigItem(
keyName = "enableCustomArcColor",
name = "Enable custom arc color",
description = "Enables the custom coloring of the globe's arc instead of using the skill's default color.",
position = 2
position = 3
)
default boolean enableCustomArcColor()
{
@@ -71,7 +82,7 @@ public interface XpGlobesConfig extends Config
keyName = "Progress arc color",
name = "Progress arc color",
description = "Change the color of the progress arc in the xp orb",
position = 3
position = 4
)
default Color progressArcColor()
{
@@ -83,7 +94,7 @@ public interface XpGlobesConfig extends Config
keyName = "Progress orb outline color",
name = "Progress orb outline color",
description = "Change the color of the progress orb outline",
position = 4
position = 5
)
default Color progressOrbOutLineColor()
{
@@ -95,7 +106,7 @@ public interface XpGlobesConfig extends Config
keyName = "Progress orb background color",
name = "Progress orb background color",
description = "Change the color of the progress orb background",
position = 5
position = 6
)
default Color progressOrbBackgroundColor()
{
@@ -106,7 +117,7 @@ public interface XpGlobesConfig extends Config
keyName = "Progress arc width",
name = "Progress arc width",
description = "Change the stroke width of the progress arc",
position = 6
position = 7
)
default int progressArcStrokeWidth()
{
@@ -117,7 +128,7 @@ public interface XpGlobesConfig extends Config
keyName = "Orb size",
name = "Size of orbs",
description = "Change the size of the xp orbs",
position = 7
position = 8
)
default int xpOrbSize()
{
@@ -128,7 +139,7 @@ public interface XpGlobesConfig extends Config
keyName = "Orb duration",
name = "Duration of orbs",
description = "Change the duration the xp orbs are visible",
position = 8
position = 9
)
default int xpOrbDuration()
{