Fix embed sending part 3

This commit is contained in:
Christer Warén
2021-08-04 11:17:30 +03:00
parent 3520e86f0b
commit 7db92969af
8 changed files with 10 additions and 10 deletions

View File

@ -34,6 +34,6 @@ module.exports = {
.setColor(client.config.embedColor)
.setDescription(statistics)
.setFooter(client.messages.footerText, "https://cdn.discordapp.com/emojis/" + client.messageEmojis["eximiabots"].replace(/[^0-9]+/g, ''));
return msg.channel.send({ embeds: embed });
return msg.channel.send({ embeds: [embed] });
}
};