Update discord.go

Added bolding around the name, and split the name vs message with ": " on line 338
This commit is contained in:
Mendy
2022-07-06 00:47:16 -04:00
committed by GitHub
parent e450e1c447
commit edf027a5ef

View File

@@ -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(),
}