fix: Disable TIV restrictions for rollout of TIV (#2342)
This commit is contained in:
@@ -21,8 +21,12 @@ namespace Discord.WebSocket
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets whether or not the guild has Text-In-Voice enabled and the voice channel is a TiV channel.
|
/// Gets whether or not the guild has Text-In-Voice enabled and the voice channel is a TiV channel.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public virtual bool IsTextInVoice
|
/// <remarks>
|
||||||
=> Guild.Features.HasTextInVoice;
|
/// Discord currently doesn't have a way to disable Text-In-Voice yet so this field is always
|
||||||
|
/// <see langword="true"/> on <see cref="SocketVoiceChannel"/>s and <see langword="false"/> on
|
||||||
|
/// <see cref="SocketStageChannel"/>s.
|
||||||
|
/// </remarks>
|
||||||
|
public virtual bool IsTextInVoice => true;
|
||||||
|
|
||||||
/// <inheritdoc />
|
/// <inheritdoc />
|
||||||
public int Bitrate { get; private set; }
|
public int Bitrate { get; private set; }
|
||||||
|
|||||||
Reference in New Issue
Block a user