Fixed missed stuff

This commit is contained in:
Dragon Fire
2024-04-07 19:13:13 -04:00
parent f59826f7ab
commit 03c2855b3a
7 changed files with 16 additions and 11 deletions
+2 -6
View File
@@ -59,15 +59,11 @@ module.exports = [
type: ActivityType.Playing
},
{
text: (client) => `${formatNumber(client.guilds.cache.size)} servers`,
text: client => `${formatNumber(client.guilds.cache.size)} servers`,
type: ActivityType.Watching
},
{
text: (client) => `with ${formatNumber(client.registry.commands.size)} commands`,
text: client => `with ${formatNumber(client.registry.commands.size)} commands`,
type: ActivityType.Playing
},
{
text: (client) => `${formatNumber(client.channels.cache.size)} channels`,
type: ActivityType.Watching
}
];