summaryrefslogtreecommitdiff
path: root/src/events/ready.js
blob: 52d28ec211994d989ef1dbf4626170b9b3ce2597 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
exports.run = (client, abVersion) => {
    console.log("[>] AleeBot is now ready!")
    console.log("[i] Running version " + abVersion + ` and in ${client.guilds.size} guilds`)
    client.user.setPresence({
        game: {
            name: `ab:help | ${client.guilds.size} servers`,
            type: 0
        }
    });
    client.user.setStatus('online')
}