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