diff --git a/PluralKit.Bot/Commands/Lists/ContextListExt.cs b/PluralKit.Bot/Commands/Lists/ContextListExt.cs index f3f5aca1..72b4f77b 100644 --- a/PluralKit.Bot/Commands/Lists/ContextListExt.cs +++ b/PluralKit.Bot/Commands/Lists/ContextListExt.cs @@ -123,6 +123,12 @@ namespace PluralKit.Bot ret += $"(birthday: {m.BirthdayString})"; break; } + case SortProperty.DisplayName: + { + if (m.DisplayName != null) + ret += $"({m.DisplayName})"; + break; + } case SortProperty.MessageCount: { if (m.MessageCountFor(lookupCtx) is { } count)