From 231451f97888862594c19fb091133296c1e4a14b Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 27 Nov 2024 01:28:17 +0000 Subject: [PATCH] fix: fixed .sclr again --- src/NadekoBot/_common/Services/Impl/GuildColorsService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NadekoBot/_common/Services/Impl/GuildColorsService.cs b/src/NadekoBot/_common/Services/Impl/GuildColorsService.cs index ab925cf30..9f9b9d2f4 100644 --- a/src/NadekoBot/_common/Services/Impl/GuildColorsService.cs +++ b/src/NadekoBot/_common/Services/Impl/GuildColorsService.cs @@ -80,7 +80,7 @@ public sealed class GuildColorsService : IReadyExecutor, IGuildColorsService, IN { _colors[guildId] = _colors[guildId] with { - Ok = color?.ToDiscordColor() + Error = color?.ToDiscordColor() }; } } @@ -108,7 +108,7 @@ public sealed class GuildColorsService : IReadyExecutor, IGuildColorsService, IN { _colors[guildId] = _colors[guildId] with { - Ok = color?.ToDiscordColor() + Pending = color?.ToDiscordColor() }; } }