From 7ab5e66d7bf7eb301644986d4b2468bce7621447 Mon Sep 17 00:00:00 2001 From: Ske Date: Wed, 5 Aug 2020 20:20:11 +0200 Subject: [PATCH] Show new color in the member color change embed --- PluralKit.Bot/Commands/MemberEdit.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/MemberEdit.cs b/PluralKit.Bot/Commands/MemberEdit.cs index 18db4a58..a1ffda09 100644 --- a/PluralKit.Bot/Commands/MemberEdit.cs +++ b/PluralKit.Bot/Commands/MemberEdit.cs @@ -187,7 +187,7 @@ namespace PluralKit.Bot await ctx.Reply(embed: new DiscordEmbedBuilder() .WithTitle($"{Emojis.Success} Member color changed.") .WithColor(color.ToDiscordColor().Value) - .WithThumbnail($"https://fakeimg.pl/256x256/{target.Color}/?text=%20") + .WithThumbnail($"https://fakeimg.pl/256x256/{color}/?text=%20") .Build()); } }