ready message now includes bot user

This commit is contained in:
Emily 2020-10-28 18:01:33 +11:00
parent 95447086cf
commit 8dfe8bee01

View file

@ -6,6 +6,6 @@ module.exports = class {
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!`);
client.logger.event(`Logged in as ${client.user.username + '#' + client.user.discriminator} and ready to accept commands! | v${client.version}`);
}
};