bot: add roles seen to stats

This commit is contained in:
Katalina / stardust 2017-12-31 23:18:15 -06:00
parent 8227a3b00b
commit 057bd4e2e7

View file

@ -167,7 +167,8 @@ class DiscordService extends Service {
`**Stats** 📈`,
'',
`👩‍❤️‍👩 **Users Served:** ${this.client.guilds.reduce((acc, g) => acc + g.memberCount, 0)}`,
`🔰 **Servers:** ${this.client.guilds.array().length}`
`🔰 **Servers:** ${this.client.guilds.size}`,
`💮 **Roles Seen:** ${this.client.guilds.reduce((acc, g) => acc + g.roles.size, 0)}`
]
message.channel.send(t.join('\n'))
}