utility.presence: add app id field
This commit is contained in:
parent
d4e47ed94d
commit
7a4fad8a37
1 changed files with 7 additions and 0 deletions
|
@ -1234,6 +1234,13 @@ presence.callback = async function (msg, line) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (activity.application_id) {
|
||||||
|
embed.fields.push({
|
||||||
|
name: "Application ID",
|
||||||
|
value: `\`${activity.application_id}\``,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
embed.description = descLines.join("\n");
|
embed.description = descLines.join("\n");
|
||||||
|
|
||||||
if (activity.assets) {
|
if (activity.assets) {
|
||||||
|
|
Loading…
Reference in a new issue