Voxel-Fox-Ltd/VoxelBotUtils

Don't count bots in the join and leave message webhooks. len([i for i in guild.members if not i.bot])

iHeroGH opened this issue · 1 comments

Don't count bots in the join and leave message webhooks. len([i for i in guild.members if not i.bot])

This is only possible to do with the members intent enabled.

What is used currently is the number Discord provides us (guild.member_count) which gives us a vague member count without using the members intent.

I don't plan to add the functionality asked for.