From 66187601bf471eccfb54ce7cb10768484d136ff2 Mon Sep 17 00:00:00 2001 From: Junior Date: Fri, 22 Nov 2024 14:53:17 +0000 Subject: [PATCH] Change bot presence to online --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index e2bd081..99b3144 100644 --- a/index.js +++ b/index.js @@ -78,7 +78,7 @@ function getOnlineReport(channel = null) { embed.setTitle("**Players Currently Online:** " + playerCount); if ( channel !== null ) channel.send({embeds: [embed]}); if ( Config.PRESENCE_INTERVAL != 0 ) { - client.user.setPresence({ activities: [{ name: "Online: " + playerCount }], status: 'idle' }); + client.user.setPresence({ activities: [{ name: "Online: " + playerCount }], status: 'online' }); } }