woomy-v2/bot/event_modules/ready/ready.js
2020-10-21 11:39:16 +11:00

10 lines
No EOL
314 B
JavaScript

module.exports = class {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
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!`);
}
};