From a459aa5456b68d4099cd7d4b61ed4c240c2e4bcb Mon Sep 17 00:00:00 2001 From: loicbersier Date: Tue, 9 Oct 2018 15:20:28 +0200 Subject: [PATCH] Removed useless command --- commands/utility/listemote.js | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 commands/utility/listemote.js diff --git a/commands/utility/listemote.js b/commands/utility/listemote.js deleted file mode 100644 index 43798079..00000000 --- a/commands/utility/listemote.js +++ /dev/null @@ -1,16 +0,0 @@ -const { Command } = require('discord.js-commando'); -module.exports = class listEmoteCommand extends Command { - constructor(client) { - super(client, { - name: 'listemote', - group: 'utility', - memberName: 'listemote', - description: `List the emotes available on the server`, - }); - } - - async run(message) { - const emojiList = message.guild.emojis.map((e, x) => (x + ' = ' + e) + ' | ' +e.name).join('\n'); - message.channel.send(emojiList); - } -}; \ No newline at end of file