shows vc empty #49
-
my code is this.... aim is to print all vc and their members.... @client.event
async def on_message(message):
if message.content == "check_vc":
for vc in server.voice_channels:
print(vc.name, vc.members) but it returns an empty list for most of the vcs even though there are members in them. Does it have anything to do with intents? intents = discord.Intents.default()
intents.members = True
client = discord.Client(intents=intents) any idea on how to fix this issue? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Take a look at #18, there it is explained about. Wait for the next release. |
Beta Was this translation helpful? Give feedback.
-
Initial voice states are fixed in the development version. Also FYI, this would've been better as an issue. |
Beta Was this translation helpful? Give feedback.
Initial voice states are fixed in the development version. Also FYI, this would've been better as an issue.