summaryrefslogtreecommitdiff
path: root/utils/no_command.js
blob: 04a5768ae0a84ca4b2d3b91dc2e175b824c347c7 (plain) (blame)
1
2
3
4
5
6
7
module.exports = {
    name: 'no_command',
    description: '',
    async execute(msg, args, bot) {
        msg.channel.send(`invalid or unspecified command. type \`${config.prefixes.main}help\`.`);
    }
};