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() const suggestion = new EmbedBuilder()
.setColor('#FFFFFF') .setColor('#FFFFFF')
.setAuthor({ name: `Suggestion from ${message.author.tag}`, iconURL: `${message.author.displayAvatarURL()}` }) .setAuthor({ name: `Suggestion from ${message.author.tag}:`, iconURL: `${message.author.displayAvatarURL()}` })
.addFields( .setDescription(message.content)
{ name: 'Suggestion:', value: message.content },
)
.setTimestamp(); .setTimestamp();
const sent = await mailbox.send({ embeds: [suggestion], content: message.author.toString() }); const sent = await mailbox.send({ embeds: [suggestion], content: message.author.toString() });