Removed useless command
This commit is contained in:
parent
ff79352166
commit
a459aa5456
1 changed files with 0 additions and 16 deletions
|
@ -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…
Reference in a new issue