We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c41dd5a commit d82e58bCopy full SHA for d82e58b
src/events/ready.js
@@ -3,6 +3,7 @@ const guild = require('../schemas/guild-schema');
3
4
client.on('ready', () => {
5
console.log('Clarence is online');
6
+ client.user.setActivity(`Slash Commands`, { type: 'WATCHING' });
7
8
setInterval(() => {
9
let serverTotal = 0;
@@ -17,7 +18,7 @@ client.on('ready', () => {
17
18
Activities[Math.floor(Math.random() * Activities.length)],
19
{ type: 'WATCHING' }
20
);
- }, 180000);
21
+ }, 300000);
22
23
24
guild.find().then((data) => {
0 commit comments