Skip to content

Commit

Permalink
remove old todos
Browse files Browse the repository at this point in the history
  • Loading branch information
NyuwBot committed Jan 1, 2024
1 parent e6fcb2a commit 33b0f2d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions DisCatSharp.Experimental/DisCatSharpExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public static async Task<string> GetUsernameAsync(this DiscordClient client, ulo
/// <param name="client">The discord client.</param>
/// <param name="profileId">The profile id to get.</param>
[RequiresFeature(Features.Override | Features.Experiment, "This method requires the guild and/or user to have access to clyde with treatment 5."),
DiscordDeprecated] // TODO: Change to Features.Experiment
DiscordDeprecated]
public static async Task<ClydeProfile> GetClydeProfileAsync(this DiscordClient client, ulong profileId)
{
DiscordApiClientHook hook = new(client.ApiClient);
Expand All @@ -39,7 +39,7 @@ public static async Task<ClydeProfile> GetClydeProfileAsync(this DiscordClient c
/// </summary>
/// <param name="guild">The guild to get clyde's settings for.</param>
[RequiresFeature(Features.Override | Features.Experiment, "This method requires the guild and/or user to have access to clyde with treatment 5."),
DiscordDeprecated] // TODO: Change to Features.Experiment
DiscordDeprecated]
public static async Task<ClydeSettings> GetClydeSettingsAsync(this DiscordGuild guild)
{
DiscordApiClientHook hook = new(guild.Discord.ApiClient);
Expand All @@ -52,7 +52,7 @@ public static async Task<ClydeSettings> GetClydeSettingsAsync(this DiscordGuild
/// <param name="guild">The guild to modify clyde's settings for.</param>
/// <param name="profileId">The profile id to apply.</param>
[RequiresFeature(Features.Override | Features.Experiment, "This method requires the guild and/or user to have access to clyde with treatment 5."),
DiscordDeprecated] // TODO: Change to Features.Experiment
DiscordDeprecated]
public static async Task<ClydeSettings> ModifyClydeSettingsAsync(this DiscordGuild guild, ulong profileId)
{
DiscordApiClientHook hook = new(guild.Discord.ApiClient);
Expand All @@ -69,7 +69,7 @@ public static async Task<ClydeSettings> ModifyClydeSettingsAsync(this DiscordGui
/// <param name="banner">The new banner.</param>
/// <param name="themeColors">The new theme colors.</param>
[RequiresFeature(Features.Override | Features.Experiment, "This method requires the guild and/or user to have access to clyde with treatment 5."),
DiscordDeprecated] // TODO: Change to Features.Experiment
DiscordDeprecated]
public static async Task<ClydeSettings> ModifyClydeSettingsAsync(
this DiscordGuild guild,
Optional<string?> name,
Expand All @@ -95,7 +95,7 @@ public static async Task<ClydeSettings> ModifyClydeSettingsAsync(
/// <param name="client">The discord client.</param>
/// <param name="basePersonality">The base base personality to generate a new one from.</param>
[RequiresFeature(Features.Override | Features.Experiment, "This method requires the guild and/or user to have access to clyde with treatment 5."),
DiscordDeprecated] // TODO: Change to Features.Experiment
DiscordDeprecated]
public static async Task<string> GenerateClydePersonalityAsync(this DiscordClient client, string? basePersonality = null)
{
DiscordApiClientHook hook = new(client.ApiClient);
Expand Down

0 comments on commit 33b0f2d

Please sign in to comment.