Add default cc info chatcolor and change cc info highlight to red
This commit is contained in:
@@ -92,7 +92,10 @@ public interface ChatColorConfig extends Config
|
|||||||
name = "Clan chat info",
|
name = "Clan chat info",
|
||||||
description = "Clan Chat Information (eg. when joining a channel)"
|
description = "Clan Chat Information (eg. when joining a channel)"
|
||||||
)
|
)
|
||||||
Color opaqueClanChatInfo();
|
default Color opaqueClanChatInfo()
|
||||||
|
{
|
||||||
|
return Color.BLACK;
|
||||||
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
position = 38,
|
position = 38,
|
||||||
@@ -102,7 +105,7 @@ public interface ChatColorConfig extends Config
|
|||||||
)
|
)
|
||||||
default Color opaqueClanChatInfoHighlight()
|
default Color opaqueClanChatInfoHighlight()
|
||||||
{
|
{
|
||||||
return Color.decode("#EF20FF");
|
return Color.RED;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
@@ -329,7 +332,10 @@ public interface ChatColorConfig extends Config
|
|||||||
name = "Clan chat info (transparent)",
|
name = "Clan chat info (transparent)",
|
||||||
description = "Clan Chat Information (eg. when joining a channel) (transparent)"
|
description = "Clan Chat Information (eg. when joining a channel) (transparent)"
|
||||||
)
|
)
|
||||||
Color transparentClanChatInfo();
|
default Color transparentClanChatInfo()
|
||||||
|
{
|
||||||
|
return Color.WHITE;
|
||||||
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
position = 68,
|
position = 68,
|
||||||
@@ -339,7 +345,7 @@ public interface ChatColorConfig extends Config
|
|||||||
)
|
)
|
||||||
default Color transparentClanChatInfoHighlight()
|
default Color transparentClanChatInfoHighlight()
|
||||||
{
|
{
|
||||||
return Color.decode("#EF20FF");
|
return Color.RED;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ConfigItem(
|
@ConfigItem(
|
||||||
|
|||||||
Reference in New Issue
Block a user