woomy-v2/bot/events/ready.js
2020-10-10 13:43:34 +11:00

11 lines
279 B
JavaScript

module.exports = class {
constructor (client) {
this.client = client;
}
async run () {
await this.client.wait(1000);
this.client.user.setActivity('eating the rich') // lol
this.client.logger.ready(`Connected to Discord as ${this.client.user.tag}`);
}
};