Skip to content

Commit

Permalink
set initial bot status to online
Browse files Browse the repository at this point in the history
  • Loading branch information
jmhayes3 committed Aug 23, 2024
1 parent e4ad225 commit 7bcd280
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion events/ready.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module.exports = {
once: true,
execute(client) {
console.log(`Ready! Logged in as ${client.user.tag}`);
client.user.setPresence({ activities: [], status: "invisible" });
client.user.setPresence({ activities: [], status: "online" });
// TODO: Reload commands on bot start up.
},
};

0 comments on commit 7bcd280

Please sign in to comment.