summaryrefslogtreecommitdiff
path: root/commands/botstatus.js
blob: 6401571e75484887061c0576a47a2d506b617568 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// TODO: bot status

module.exports = {
    name: 'botstatus',
    aliases: ['status', 'bs'],
    description: '',
    async execute(msg, args, bot) {
        if (msg.member.hasPermission('KICK_MEMBERS')) {
            m = args.join(' ');
            bot.user.setActivity(m);
        } else {
            msg.reply('insufficent perms bruh');
        }
    }
};