예제 #1
0
        public async Task ResumePlayback(CommandContext ctx)
        {
            VoiceNextConnection vnc = await GetVNextConnection(ctx);

            if (vnc == null)
            {
                return;
            }
            if (!vnc.IsPlaying)
            {
                await vnc.ResumeAsync();
            }
        }