feat: add command for calling up ids

This commit is contained in:
Jake Fulmine
2022-08-27 13:52:50 +02:00
parent ccac0a9203
commit cd14e6409b
6 changed files with 30 additions and 0 deletions

View File

@@ -140,4 +140,9 @@ public class Member
.Description($"*{scream}*");
await ctx.Reply(embed: eb.Build());
}
public async Task DisplayId(Context ctx, PKMember target)
{
await ctx.Reply($"{target.Hid}");
}
}