Allow clients to send 'Gateway Voice State Update' command (#1888)
* Expose SendVoiceStateUpdateAsync API to clients Fixes #1882 * Revert "Expose SendVoiceStateUpdateAsync API to clients" This reverts commit 1a11cae7 * Add IAudioChannel.ModifyAsync API * fix NRE with request options Co-authored-by: Quin Lynch <49576606+quinchs@users.noreply.github.com> Co-authored-by: quin lynch <lynchquin@gmail.com>
This commit is contained in:
@@ -41,6 +41,11 @@ namespace Discord
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task ModifyAsync(Action<AudioChannelProperties> func, RequestOptions options)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public IDisposable EnterTypingState(RequestOptions options = null)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
@@ -64,6 +64,11 @@ namespace Discord
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task ModifyAsync(Action<AudioChannelProperties> func, RequestOptions options)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
|
||||
public Task<ICategoryChannel> GetCategoryAsync(CacheMode mode = CacheMode.AllowDownload, RequestOptions options = null)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
|
||||
Reference in New Issue
Block a user