diff --git a/src/config/statuses.ts b/src/config/statuses.ts index 19930eb..1ed0a70 100644 --- a/src/config/statuses.ts +++ b/src/config/statuses.ts @@ -2,6 +2,9 @@ import { ActivityType, Guild } from "discord.js" const statuses = [ { name: (guild: Guild) => { return `over ${guild.memberCount} members` }, type: ActivityType.Watching }, + { name: (guild: Guild) => { return `${guild.channels.cache.size} channels` }, type: ActivityType.Watching }, + { name: (guild: Guild) => { return `${guild.premiumSubscriptionCount} boosters` }, type: ActivityType.Watching }, + { name: (guild: Guild) => { return `${guild.voiceStates.cache.size} members in vc` }, type: ActivityType.Watching }, { name: "over the Illegitimate Server", type: ActivityType.Watching }, { name: "jon and pit edate", type: ActivityType.Watching }, { name: "for Martina's return", type: ActivityType.Watching },