Skip to content

Commit d82e58b

Browse files
committed
feat: Add backup activity status | shorten timer
1 parent c41dd5a commit d82e58b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/events/ready.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ const guild = require('../schemas/guild-schema');
33

44
client.on('ready', () => {
55
console.log('Clarence is online');
6+
client.user.setActivity(`Slash Commands`, { type: 'WATCHING' });
67

78
setInterval(() => {
89
let serverTotal = 0;
@@ -17,7 +18,7 @@ client.on('ready', () => {
1718
Activities[Math.floor(Math.random() * Activities.length)],
1819
{ type: 'WATCHING' }
1920
);
20-
}, 180000);
21+
}, 300000);
2122

2223
setInterval(() => {
2324
guild.find().then((data) => {

0 commit comments

Comments
 (0)