From 9a761ed7e4c54cfc15f4a1ef7c85aa1921243f98 Mon Sep 17 00:00:00 2001 From: Ske Date: Fri, 8 May 2020 02:03:31 +0200 Subject: [PATCH] Add display name to long member list --- PluralKit.Bot/Commands/SystemList.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/PluralKit.Bot/Commands/SystemList.cs b/PluralKit.Bot/Commands/SystemList.cs index 34e50f2d..9f7ae212 100644 --- a/PluralKit.Bot/Commands/SystemList.cs +++ b/PluralKit.Bot/Commands/SystemList.cs @@ -78,6 +78,7 @@ namespace PluralKit.Bot foreach (var m in members) { var profile = $"**ID**: {m.Hid}"; + if (m.DisplayName != null) profile += $"\n**Display name**: {m.DisplayName}"; if (m.Pronouns != null) profile += $"\n**Pronouns**: {m.Pronouns}"; if (m.Birthday != null) profile += $"\n**Birthdate**: {m.BirthdayString}"; if (m.ProxyTags.Count > 0) profile += $"\n**Proxy tags:** {m.ProxyTagsString()}";