From f138ceaa2278abbf06d7825a53fa9b8a43afca5c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Axel=20Olausson=20Holten=C3=A4s?= Date: Sun, 6 Mar 2022 12:44:34 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20bot=20status?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/events/ready.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/events/ready.js b/src/events/ready.js index 112208c..9987aa9 100644 --- a/src/events/ready.js +++ b/src/events/ready.js @@ -5,5 +5,6 @@ module.exports = { once: true, async execute(client) { await logger.info(`Ready! Logged in as ${client.user.tag}`); + await client.user.setPresence({ activities: [{ type: 'WATCHING', name: `${client.guilds.cache.size} guilds` }], status: 'online' }); }, };