Browse Source

fix: Ambigiuous reference when creating roles

pull/2181/head
Quin Lynch 3 years ago
parent
commit
fab92a56b0
1 changed files with 0 additions and 4 deletions
  1. +0
    -4
      src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs

+ 0
- 4
src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs View File

@@ -999,10 +999,6 @@ namespace Discord.WebSocket
return null;
}

/// <inheritdoc />
public Task<RestRole> 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);
/// <summary>
/// Creates a new role with the provided name.
/// </summary>


Loading…
Cancel
Save