1
0
Fork 0

Removed useless command

Commando
loicbersier 6 years ago
parent ff79352166
commit a459aa5456

@ -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);
}
};
Loading…
Cancel
Save