From fab92a56b011aa14e4c697c269b068356553027e Mon Sep 17 00:00:00 2001 From: Quin Lynch Date: Wed, 9 Mar 2022 16:59:11 -0400 Subject: [PATCH] fix: Ambigiuous reference when creating roles --- src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs | 4 ---- 1 file changed, 4 deletions(-) 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. ///