diff --git a/PluralKit.Bot/Commands/Lists/ContextListExt.cs b/PluralKit.Bot/Commands/Lists/ContextListExt.cs index 72b4f77b..1b79dd39 100644 --- a/PluralKit.Bot/Commands/Lists/ContextListExt.cs +++ b/PluralKit.Bot/Commands/Lists/ContextListExt.cs @@ -163,6 +163,8 @@ namespace PluralKit.Bot ret += $"(last message: )"; else if (opts.IncludeCreated && m.MetadataPrivacy.TryGet(lookupCtx, m.Created, out var created)) ret += $"(created at )"; + else if (opts.IncludeAvatar && m.AvatarFor(lookupCtx) is { } avatarUrl) + ret += $"([avatar URL]({avatarUrl}))"; else if (opts.IncludePronouns && m.PronounsFor(lookupCtx) is { } pronouns) ret += $"({pronouns})"; else if (m.HasProxyTags)