adding shuffle

This commit is contained in:
2023-12-24 14:33:52 -03:00
parent 9ef8af8e23
commit f0a81e5305
3 changed files with 48 additions and 0 deletions

View File

@@ -56,6 +56,7 @@ namespace Kasbot.Modules
await PlayerService.Stop(Context.Guild.Id);
}
[Alias("s", "next", "n")]
[Command("skip", RunMode = RunMode.Async)]
public async Task SkipAsync()
{
@@ -74,5 +75,11 @@ namespace Kasbot.Modules
{
await PlayerService.Repeat(Context.Guild.Id);
}
[Command("shuffle", RunMode = RunMode.Async)]
public async Task Shuffle()
{
await PlayerService.Shuffle(Context.Guild.Id);
}
}
}