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' }); } }