b1naryth1ef / dscord

Discord Library for D
http://b1naryth1ef.github.io/dscord/
zlib License
51 stars 15 forks source link

Add user mention support #34

Open mgohde opened 5 years ago

mgohde commented 5 years ago

User mentions are of the form <@userid>, so the following addition to the User class would likely do the trick:

string getMention() { return format("<@%s>", id); }

This is just a nice feature present in discord.py that doesn't really warrant a pull request.