mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04: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) {
|
||||
const hidenGuild = await this.client.guilds.fetch("568120814776614924").memberCount,
|
||||
users = this.client.users.cache.size - hidenGuild,
|
||||
servers = this.client.guilds.cache.size - 1;
|
||||
const hiddenGuild = await this.client.guilds.fetch("568120814776614924");
|
||||
const users = this.client.users.cache.size - hiddenGuild.memberCount;
|
||||
const servers = this.client.guilds.cache.size - 1;
|
||||
|
||||
|
||||
const statsEmbed = new Discord.MessageEmbed()
|
||||
|
|
Loading…
Reference in a new issue