public async Task ClearQ() { if (((SocketGuildUser)Context.User).GuildPermissions.Has(GuildPermission.ManageChannels)) { await musicService.ClearQueue(Context); } else { await ReplyAsync(":no_entry_sign: You don't have the Manage Channels permission to clear the Queue!"); } }
public async Task Clear() => await ReplyAsync(embed : await _musicService.ClearQueue(Context.Guild));