diff --git a/PluralKit.Bot/Commands/Groups.cs b/PluralKit.Bot/Commands/Groups.cs index 2faec364..9c3e75a4 100644 --- a/PluralKit.Bot/Commands/Groups.cs +++ b/PluralKit.Bot/Commands/Groups.cs @@ -140,9 +140,11 @@ namespace PluralKit.Bot var eb = new DiscordEmbedBuilder() .WithAuthor(nameField) - .AddField("Description", target.Description) .WithFooter($"System ID: {system.Hid} | Group ID: {target.Hid} | Created on {target.Created.FormatZoned(system)}"); + if (target.Description != null) + eb.AddField("Description", target.Description); + await ctx.Reply(embed: eb.Build()); }