Removed something useless

This commit is contained in:
Loic Bersier 2018-09-22 18:37:32 +02:00
parent d01d5afefc
commit 696d86b723

View file

@ -9,7 +9,7 @@ module.exports = class listEmoteCommand extends Command {
});
}
async run(message, { text }) {
async run(message) {
const emojiList = message.guild.emojis.map((e, x) => (x + ' = ' + e) + ' | ' +e.name).join('\n');
message.channel.send(emojiList);
}