Fix embed sending

This commit is contained in:
Christer Warén
2021-08-04 10:52:56 +03:00
parent 2de365770d
commit bb07884ab4
8 changed files with 9 additions and 9 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);
return msg.channel.send({ embed: embed });
}
};