From 93f1158d339e45d0cf41cce24d9b108c75bb2551 Mon Sep 17 00:00:00 2001 From: Spectralitree <72747870+Spectralitree@users.noreply.github.com> Date: Sun, 9 Jan 2022 13:21:22 +0100 Subject: [PATCH] fix: display correct color when looking up other systems' groups --- PluralKit.Bot/Commands/Groups.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.Bot/Commands/Groups.cs b/PluralKit.Bot/Commands/Groups.cs index 4a3aacdf..e8a7ed29 100644 --- a/PluralKit.Bot/Commands/Groups.cs +++ b/PluralKit.Bot/Commands/Groups.cs @@ -460,7 +460,7 @@ public class Groups } var title = system.Name != null ? $"Groups of {system.Name} (`{system.Hid}`)" : $"Groups of `{system.Hid}`"; - await ctx.Paginate(groups.ToAsyncEnumerable(), groups.Count, 25, title, ctx.System.Color, Renderer); + await ctx.Paginate(groups.ToAsyncEnumerable(), groups.Count, 25, title, system.Color, Renderer); Task Renderer(EmbedBuilder eb, IEnumerable page) {