mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
fix
This commit is contained in:
parent
1063c45040
commit
e3539a6e4a
1 changed files with 3 additions and 3 deletions
|
@ -18,9 +18,9 @@ class Stats extends Command {
|
||||||
}
|
}
|
||||||
|
|
||||||
async run(message, args, data) {
|
async run(message, args, data) {
|
||||||
const hidenGuild = await this.client.guilds.fetch("568120814776614924").memberCount,
|
const hiddenGuild = await this.client.guilds.fetch("568120814776614924");
|
||||||
users = this.client.users.cache.size - hidenGuild,
|
const users = this.client.users.cache.size - hiddenGuild.memberCount;
|
||||||
servers = this.client.guilds.cache.size - 1;
|
const servers = this.client.guilds.cache.size - 1;
|
||||||
|
|
||||||
|
|
||||||
const statsEmbed = new Discord.MessageEmbed()
|
const statsEmbed = new Discord.MessageEmbed()
|
||||||
|
|
Loading…
Reference in a new issue