summaryrefslogtreecommitdiff
path: root/src/commands/fun/respect.js
blob: 863c9b087286b50f4e94532d3a87f24a943b3001 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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: ['s5n!respect', 's5n!f'],
            guildOnly: true
        });
    }
    run(msg) {
        msg.channel.send('press f to pay respects').then(m => {
            m.react('🇫');
            msg.delete();
        });
    }
};