Fix embed sending part 2

This commit is contained in:
Christer Warén
2021-08-04 11:12:07 +03:00
parent bb07884ab4
commit 3520e86f0b
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({ embed: embed });
return msg.channel.send({ embeds: embed });
}
};