woomy-v2/bot/event_modules/ready/ready.js
2020-10-21 18:57:26 +11:00

11 lines
398 B
JavaScript

module.exports = class {
constructor (wsEvent) {
this.wsEvent = wsEvent;
}
async run (client) {
const activity = client.constants.activities.random();
client.editStatus('online', { name: `${activity.message} | v${client.version}`, type: activity.type});
client.logger.event(`Woomy v${client.version} initialized and ready to accept commands!`);
}
};