Skip to content

Commit

Permalink
Update ready.js
Browse files Browse the repository at this point in the history
  • Loading branch information
danielpmc authored Oct 16, 2023
1 parent d343168 commit b530628
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions bot/discord/events/ready.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,19 +48,23 @@ module.exports = async (client) => {
//Auto Activities List
const activities = [
{
text: "over DanBot Hosting",
text: "over DBH",
type: "WATCHING"
},
{
text: "free servers being created",
type: "WATCHING"
},
{
text: "over " + users.length + " happy clients",
text: "over 14,000+ happy clients",
type: "WATCHING"
},
{
text: "my impending doom",
text: "with the ban hammer over abusers",
type: "PLAYING"
},
{
text: "powerful servers doing work",
type: "WATCHING"
}
];
Expand All @@ -69,7 +73,7 @@ module.exports = async (client) => {
client.user.setActivity(activity.text, {
type: activity.type,
});
}, 30000);
}, 15000);

// Node status embed
if (enabled.NodeStats === true) {
Expand Down

0 comments on commit b530628

Please sign in to comment.