summaryrefslogtreecommitdiff
path: root/src/commands/fun/respect.js
blob: 50d185b375b0be2e5b1817a3c1b6b3a659ef62ae (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
const { Command } = require('discord.js-commando');

module.exports = class RespectFun extends Command {
    constructor(client) {
        super(client, {
            name: 'respect',
            aliases: ['f'],
            group: 'fun',
            memberName: 'respect',
            description: 'Press F to pay respects.',
            examples: ['uwu!respect', 'uwu!f'],
            guildOnly: true,
            userPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY'],
			clientPermissions: ['SEND_MESSAGES', 'READ_MESSAGE_HISTORY']
        });
    }
    run(msg) {
        msg.channel.send('Press F to pay respects.').then(m => {
            m.react('🇫');
            msg.delete();
        });
    }
};