We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d82e58b commit 5b5ca33Copy full SHA for 5b5ca33
src/events/ready.js
@@ -30,8 +30,12 @@ client.on('ready', () => {
30
const memberCount = client.guilds.cache.get(record.id).memberCount;
31
const channel = client.channels.cache.get(record.membercountChannelId);
32
channel.setName(`Discord Members: ${memberCount.toLocaleString()}`);
33
- console.log(`[MEMBER COUNT] - Updated ${client.guilds.cache.get(record.id).name} member count to ${memberCount}`)
+ console.log(
34
+ `[MEMBER COUNT] - Updated ${
35
+ client.guilds.cache.get(record.id).name
36
+ } member count to ${memberCount}`
37
+ );
38
});
39
- }, 600000);}
-);
40
+ }, 600000);
41
+});
0 commit comments