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

11 lines
370 B
JavaScript
Raw Normal View History

2022-12-12 01:25:48 +00:00
const Event = require('../../base/Event.js');
2022-12-12 01:14:28 +00:00
module.exports = class Ready extends Event {
2020-10-20 10:23:07 +00:00
constructor (wsEvent) {
2022-12-12 01:14:28 +00:00
super (wsEvent);
2020-10-20 10:23:07 +00:00
this.wsEvent = wsEvent;
2020-10-20 08:30:46 +00:00
}
async run (client) {
2021-07-15 02:38:13 +00:00
client.logger.event(`Logged in as ${client.user.username + '#' + client.user.discriminator} and ready to accept commands! | v${client.version}`);
2020-10-20 08:30:46 +00:00
}
2020-10-21 00:39:16 +00:00
};