diff --git a/src/main/java/vc/live/LiveChat.java b/src/main/java/vc/live/LiveChat.java index c0b6af4..d675712 100644 --- a/src/main/java/vc/live/LiveChat.java +++ b/src/main/java/vc/live/LiveChat.java @@ -66,7 +66,7 @@ private EmbedData getChatEmbed(final Chats chat) { return EmbedCreateSpec.builder() .description(escape("**" + chat.getPlayerName() + ":** " + chat.getChat())) .footer("\u200b", avatarUrl(chat.getPlayerUuid()).toString()) - .color(Color.BLACK) + .color(chat.getChat().startsWith(">") ? Color.MEDIUM_SEA_GREEN : Color.BLACK) .timestamp(Instant.ofEpochSecond(chat.getTime().toEpochSecond())) .build() .asRequest();