From cbe1f49083380a9b58a3284c4d1f878e9db1a010 Mon Sep 17 00:00:00 2001
From: Toastie <toastie@toastiet0ast.com>
Date: Fri, 29 Nov 2024 18:14:24 +1300
Subject: [PATCH] fixed .sclr again

---
 src/EllieBot/_common/Services/Impl/GuildColorsService.cs | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/EllieBot/_common/Services/Impl/GuildColorsService.cs b/src/EllieBot/_common/Services/Impl/GuildColorsService.cs
index 04e2ec3..86143ff 100644
--- a/src/EllieBot/_common/Services/Impl/GuildColorsService.cs
+++ b/src/EllieBot/_common/Services/Impl/GuildColorsService.cs
@@ -80,7 +80,7 @@ public sealed class GuildColorsService : IReadyExecutor, IGuildColorsService, IE
         {
             _colors[guildId] = _colors[guildId] with
             {
-                Ok = color?.ToDiscordColor()
+                Error = color?.ToDiscordColor()
             };
         }
     }
@@ -108,7 +108,7 @@ public sealed class GuildColorsService : IReadyExecutor, IGuildColorsService, IE
         {
             _colors[guildId] = _colors[guildId] with
             {
-                Ok = color?.ToDiscordColor()
+                Pending = color?.ToDiscordColor()
             };
         }
     }