diff --git a/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs b/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
index 2c37bb2da..e89096f00 100644
--- a/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
+++ b/src/Discord.Net.Rest/Entities/Guilds/RestGuild.cs
@@ -763,11 +763,6 @@ namespace Discord.Rest
return null;
}
- ///
- public Task CreateRoleAsync(string name, GuildPermissions? permissions = default(GuildPermissions?), Color? color = default(Color?),
- bool isHoisted = false, RequestOptions options = null)
- => CreateRoleAsync(name, permissions, color, isHoisted, false, options);
-
///
/// Creates a new role with the provided name.
///
diff --git a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs
index bd5d811f1..c4b756410 100644
--- a/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs
+++ b/src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs
@@ -999,10 +999,6 @@ namespace Discord.WebSocket
return null;
}
- ///
- public Task CreateRoleAsync(string name, GuildPermissions? permissions = default(GuildPermissions?), Color? color = default(Color?),
- bool isHoisted = false, RequestOptions options = null)
- => GuildHelper.CreateRoleAsync(this, Discord, name, permissions, color, isHoisted, false, options);
///
/// Creates a new role with the provided name.
///