Merge pull request #5732 from Kamielvf/chatcolor-fix

Add default cc info chatcolor and change cc info highlight to red
This commit is contained in:
Tomas Slusny
2018-10-02 08:01:51 +02:00
committed by GitHub

View File

@@ -92,7 +92,10 @@ public interface ChatColorConfig extends Config
name = "Clan chat info",
description = "Clan Chat Information (eg. when joining a channel)"
)
Color opaqueClanChatInfo();
default Color opaqueClanChatInfo()
{
return Color.BLACK;
}
@ConfigItem(
position = 38,
@@ -102,7 +105,7 @@ public interface ChatColorConfig extends Config
)
default Color opaqueClanChatInfoHighlight()
{
return Color.decode("#EF20FF");
return Color.RED;
}
@ConfigItem(
@@ -329,7 +332,10 @@ public interface ChatColorConfig extends Config
name = "Clan chat info (transparent)",
description = "Clan Chat Information (eg. when joining a channel) (transparent)"
)
Color transparentClanChatInfo();
default Color transparentClanChatInfo()
{
return Color.WHITE;
}
@ConfigItem(
position = 68,
@@ -339,7 +345,7 @@ public interface ChatColorConfig extends Config
)
default Color transparentClanChatInfoHighlight()
{
return Color.decode("#EF20FF");
return Color.RED;
}
@ConfigItem(