woomy-v2/bot/event_modules/ready/ready.js

12 lines
327 B
JavaScript
Raw Normal View History

2020-10-20 08:30:46 +00:00
class Ready {
2020-10-20 10:23:07 +00:00
constructor (wsEvent) {
this.wsEvent = wsEvent;
2020-10-20 08:30:46 +00:00
}
async run (client) {
client.editStatus('online', { name: `Goddess of Discord! | v${client.version}`});
client.logger.event(`Woomy v${client.version} initialized and ready to accept commands!`);
}
}
2020-10-20 12:19:12 +00:00
module.exports = Ready;