From edf027a5ef62cd629a5524b90824c4649a22d2b9 Mon Sep 17 00:00:00 2001 From: Mendy Date: Wed, 6 Jul 2022 00:47:16 -0400 Subject: [PATCH] Update discord.go Added bolding around the name, and split the name vs message with ": " on line 338 --- bridge/discord/discord.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bridge/discord/discord.go b/bridge/discord/discord.go index 5ae6c572..d5cd7ac5 100644 --- a/bridge/discord/discord.go +++ b/bridge/discord/discord.go @@ -335,7 +335,7 @@ func (b *Bdiscord) handleEventBotUser(msg *config.Message, channelID string) (st } m := discordgo.MessageSend{ - Content: msg.Username + msg.Text, + Content: "**" + msg.Username + "**: " + msg.Text, AllowedMentions: b.getAllowedMentions(), }