summaryrefslogtreecommitdiff
path: root/commands/say.js
blob: a27558fdbf78a16b76ea1538ec9dedb02539f04e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module.exports = {
    name: 'say',
    description: '',
    execute(msg, args, bot) {
        if (msg.member.hasPermission('KICK_MEMBERS')) {
            m = args.join(' ');
            msg.channel.send(m);
            msg.delete();
        }
    }
};