diff --git a/src/handlers/events/ready.ts b/src/handlers/events/ready.ts index 00c04d1..20c8810 100644 --- a/src/handlers/events/ready.ts +++ b/src/handlers/events/ready.ts @@ -3,6 +3,6 @@ import { Event } from '../../interfaces'; export const event: Event = { name: 'ready', run: client => { - console.log(client.user.tag, + ' is now ready!'); + console.log(`${client.user.tag} is online with the server count of ${client.guilds.size}`); } -} \ No newline at end of file +}