Temporary fix for user count

This commit is contained in:
Helixu 2021-11-22 20:19:59 +00:00
parent 2c4a97b8be
commit e599080b39

View file

@ -12,13 +12,7 @@ function writeJson(path, content){
}
function getUserCount(){
var yes = 0;
client.guilds.cache.forEach(guild => {
guild.members.cache.forEach(mem => {
yes++;
});
});
return yes;
return 69420;
}
var int;