woomy-v2/bot/events/ready.js

12 lines
323 B
JavaScript
Raw Normal View History

2020-08-18 04:58:36 +00:00
module.exports = class {
constructor (client) {
this.client = client;
}
async run () {
await this.client.wait(1000);
2020-10-10 02:46:18 +00:00
this.client.user.setActivity(`BNA | v${this.client.package.version}`, { type: "WATCHING" }) // lol
2020-08-18 04:58:36 +00:00
this.client.logger.ready(`Connected to Discord as ${this.client.user.tag}`);
}
};