fix(arabot): increase character limit for suggestions

This commit is contained in:
smyalygames 2023-03-08 18:52:37 +00:00
parent da0e231760
commit 6f276d5083

View File

@ -46,10 +46,8 @@ export class Suggestions extends Listener {
const suggestion = new EmbedBuilder()
.setColor('#FFFFFF')
.setAuthor({ name: `Suggestion from ${message.author.tag}`, iconURL: `${message.author.displayAvatarURL()}` })
.addFields(
{ name: 'Suggestion:', value: message.content },
)
.setAuthor({ name: `Suggestion from ${message.author.tag}:`, iconURL: `${message.author.displayAvatarURL()}` })
.setDescription(message.content)
.setTimestamp();
const sent = await mailbox.send({ embeds: [suggestion], content: message.author.toString() });