diff --git a/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs b/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs
index ae15ce2ba..2aa070b03 100644
--- a/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs
+++ b/src/Discord.Net.Core/Entities/Channels/ITextChannel.cs
@@ -5,7 +5,7 @@ using System.Threading.Tasks;
namespace Discord
{
- public interface ITextChannel : IMessageChannel, IMentionable, IGuildChannel, INestedChannel
+ public interface ITextChannel : IMessageChannel, IMentionable, INestedChannel
{
/// Checks if the channel is NSFW.
bool IsNsfw { get; }
diff --git a/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs b/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs
index 3f9ff953b..2e345bfda 100644
--- a/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs
+++ b/src/Discord.Net.Core/Entities/Channels/IVoiceChannel.cs
@@ -3,7 +3,7 @@ using System.Threading.Tasks;
namespace Discord
{
- public interface IVoiceChannel : IGuildChannel, IAudioChannel, INestedChannel
+ public interface IVoiceChannel : INestedChannel, IAudioChannel
{
/// Gets the bitrate, in bits per second, clients in this voice channel are requested to use.
int Bitrate { get; }