From 467bc12ffb13c36b97287859b45a95adb78f3c00 Mon Sep 17 00:00:00 2001 From: Androz2091 Date: Fri, 26 Feb 2021 13:41:07 +0100 Subject: [PATCH] :pencil: Add client username in ready --- events/ready.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/events/ready.js b/events/ready.js index bc00202..d8ca2f7 100644 --- a/events/ready.js +++ b/events/ready.js @@ -1,5 +1,5 @@ module.exports = async (client) => { - console.log(`Ready on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users`); + console.log(`Logged in as ${client.user.username}. Ready on ${client.guilds.cache.size} servers, for a total of ${client.users.cache.size} users`); client.user.setActivity(client.config.discord.activity); }; \ No newline at end of file