bot: fix showing id instead of hid on system card

This commit is contained in:
Ske 2019-04-21 19:11:05 +02:00
parent 62cde789cb
commit 467719283f

View File

@ -27,7 +27,7 @@ namespace PluralKit.Bot {
.WithFooter($"System ID: {system.Hid}"); .WithFooter($"System ID: {system.Hid}");
eb.AddField("Linked accounts", string.Join(", ", users)); eb.AddField("Linked accounts", string.Join(", ", users));
eb.AddField("Members", $"(see `pk;system {system.Id} list` or `pk;system {system.Hid} list full`)"); eb.AddField("Members", $"(see `pk;system {system.Hid} list` or `pk;system {system.Hid} list full`)");
// TODO: fronter // TODO: fronter
return eb.Build(); return eb.Build();
} }