Example #1
0
 /// <summary>
 /// Simply Skips to the next song in the Queue
 /// </summary>
 /// <param name="duser"></param>
 /// <returns></returns>
 public static async Task MusicSkip(DUser duser)
 {
     MusicBot.NextSong();
     await Task.Delay(1);
 }
Example #2
0
        public async Task CMDNext(CommandContext ctx)
        {
            await TryDelete(ctx);

            MusicBot.NextSong();
        }