From 915d8b449bd87df656a8e745303656b0f745f78a Mon Sep 17 00:00:00 2001 From: dusk Date: Wed, 13 Aug 2025 02:41:41 +0300 Subject: [PATCH] fix(bot): get rid of syntax error in SystemEdit --- PluralKit.Bot/Commands/SystemEdit.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/SystemEdit.cs b/PluralKit.Bot/Commands/SystemEdit.cs index 245625c5..31d7d761 100644 --- a/PluralKit.Bot/Commands/SystemEdit.cs +++ b/PluralKit.Bot/Commands/SystemEdit.cs @@ -235,7 +235,8 @@ public class SystemEdit .Color(newColor.ToDiscordColor()) .Thumbnail(new Embed.EmbedThumbnail($"attachment://color.gif")) .Build(), - files: [MiscUtils.GenerateColorPreview(color)]);); + files: [MiscUtils.GenerateColorPreview(newColor)] + ); } public async Task ClearColor(Context ctx, PKSystem target, bool flagConfirmYes)