10 Replies
- What's your exact discord.js
npm list discord.js
and node node -v
version?
- Not a discord.js issue? Check out #other-js-ts.
- Consider reading #how-to-get-help to improve your question!
- Explain what exactly your issue is.
- Post the full error stack trace, not just the top part!
- Show your code!
- Issue solved? Press the button!have 427 memeber in the guild shows 3 only why ??
Show the code
${client.users.cache.size}
Getting your bot's member count
-
client.users.cache.size
is unreliable because it will only return cached users
- The preferred method is using collection.reduce()
on client.guilds.cache
${guild.members.cache.size}
this also ??
Getting your bot's member count
-
client.users.cache.size
is unreliable because it will only return cached users
- The preferred method is using collection.reduce()
on client.guilds.cache
you can use <Guild>.memberCount for that