Bot will no longer reconnect the channel between songs
This commit is contained in:
parent
29483d4909
commit
7d5afdd234
@ -131,8 +131,7 @@ namespace NadekoBot.Services.Music
|
||||
if (CurrentSong == null)
|
||||
continue;
|
||||
|
||||
if (AudioClient != null)
|
||||
try { await AudioClient.StopAsync().ConfigureAwait(false); } catch { }
|
||||
if (AudioClient == null || AudioClient.ConnectionState == ConnectionState.Disconnected || AudioClient.ConnectionState == ConnectionState.Disconnecting)
|
||||
AudioClient = await PlaybackVoiceChannel.ConnectAsync().ConfigureAwait(false);
|
||||
|
||||
var index = _playlist.IndexOf(CurrentSong);
|
||||
|
Loading…
Reference in New Issue
Block a user