Add default cc info chatcolor and change cc info highlight to red

This commit is contained in:
Kamiel
2018-10-01 19:45:27 +02:00
parent 7fcd1e846c
commit 8664a60dd7

View File

@@ -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(