feature: Add SelfStream voice state property (#1369)

* Add self_stream voice state property

Adds the self_stream property which is set true when a user is streaming a video to a voice channel

* use flags for selfstream state instead of its own prop
This commit is contained in:
Chris Johnston
2019-09-07 19:08:40 -07:00
committed by Christopher F
parent b0a595be77
commit 9bb08c9ba4
9 changed files with 29 additions and 3 deletions

View File

@@ -95,5 +95,7 @@ namespace Discord.Rest
IVoiceChannel IVoiceState.VoiceChannel => null;
/// <inheritdoc />
string IVoiceState.VoiceSessionId => null;
/// <inheritdoc />
bool IVoiceState.IsStream => false;
}
}