How can i let my Bot join the VoiceChat after the Start.
This is how my code looks rn:
private static async Task OnClientReady(DiscordClient sender, ReadyEventArgs e)
{
ulong voiceChannelId = 1076192774451380360;
var voiceChannel = await sender.GetChannelAsync(voiceChannelId);
await voiceChannel.PlaceMemberAsync((DiscordMember)sender.CurrentUser);
}