chat commands: added positions to config items

This commit is contained in:
l2-
2017-08-20 11:07:03 +02:00
committed by Adam
parent 59552896ed
commit a131541d8a

View File

@@ -36,6 +36,7 @@ import net.runelite.client.config.ConfigItem;
public interface ChatCommandsConfig public interface ChatCommandsConfig
{ {
@ConfigItem( @ConfigItem(
position = 0,
keyName = "price", keyName = "price",
name = "Price Command", name = "Price Command",
description = "Configures whether the Price command is enabled" description = "Configures whether the Price command is enabled"
@@ -46,6 +47,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 1,
keyName = "lvl", keyName = "lvl",
name = "Level Command", name = "Level Command",
description = "Configures whether the Level command is enabled" description = "Configures whether the Level command is enabled"
@@ -56,6 +58,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 2,
keyName = "enableRecolor", keyName = "enableRecolor",
name = "Enable command recolor", name = "Enable command recolor",
description = "Configures whether chat commands are recolored" description = "Configures whether chat commands are recolored"
@@ -66,6 +69,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 3,
keyName = "hexColorPublic", keyName = "hexColorPublic",
name = "Public chat", name = "Public chat",
description = "Color of Public chat" description = "Color of Public chat"
@@ -76,6 +80,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 4,
keyName = "hexColorPublicH", keyName = "hexColorPublicH",
name = "Public chat highlight", name = "Public chat highlight",
description = "Color of Public chat highlight" description = "Color of Public chat highlight"
@@ -86,6 +91,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 5,
keyName = "hexColorPrivate", keyName = "hexColorPrivate",
name = "Private chat", name = "Private chat",
description = "Color of Private chat" description = "Color of Private chat"
@@ -96,6 +102,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 6,
keyName = "hexColorPrivateH", keyName = "hexColorPrivateH",
name = "Private chat highlight", name = "Private chat highlight",
description = "Color of Private chat highlight" description = "Color of Private chat highlight"
@@ -106,6 +113,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 7,
keyName = "hexColorCc", keyName = "hexColorCc",
name = "Clan chat", name = "Clan chat",
description = "Color of Clan chat" description = "Color of Clan chat"
@@ -116,6 +124,7 @@ public interface ChatCommandsConfig
} }
@ConfigItem( @ConfigItem(
position = 8,
keyName = "hexColorCcH", keyName = "hexColorCcH",
name = "Clan chat Highlight", name = "Clan chat Highlight",
description = "Color of Clan chat highlight" description = "Color of Clan chat highlight"