From 696d86b72382d2db32dca81b8d1b03f6500dac03 Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Sat, 22 Sep 2018 18:37:32 +0200 Subject: [PATCH] Removed something useless --- commands/utility/listemote.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/listemote.js b/commands/utility/listemote.js index 3dc3a4f..57d8689 100644 --- a/commands/utility/listemote.js +++ b/commands/utility/listemote.js @@ -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); }