utility.presence: add app id field

This commit is contained in:
Cynthia Foxwell 2023-10-07 23:05:19 -06:00
parent d4e47ed94d
commit 7a4fad8a37
1 changed files with 7 additions and 0 deletions

View File

@ -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");
if (activity.assets) {