diff options
Diffstat (limited to 'src/commands/bot/support.ts')
| -rw-r--r-- | src/commands/bot/support.ts | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/src/commands/bot/support.ts b/src/commands/bot/support.ts deleted file mode 100644 index 9475295..0000000 --- a/src/commands/bot/support.ts +++ /dev/null @@ -1,26 +0,0 @@ -import { Command, CommandoMessage } from 'discord.js-commando'; -import emoji from 'emoji-random'; -import { MessageEmbed } from 'discord.js'; - -module.exports = class SupportBot extends Command { - constructor(client) { - super(client, { - name: 'support', - group: 'bot', - memberName: 'support', - description: 'Gives you uwufier\'s support server link.', - examples: ['uwu!support'], - userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'], - throttling: { - usages: 5, - duration: 30 - }, - }); - } - run(msg: CommandoMessage) { - let emb = new MessageEmbed() - .setDescription(`For support, please join [this Discord server](https://discord.com/invite/DVwXUwx). ${emoji.random()}`) - msg.say(emb) - } -}; |