Update userinfocontextmenu.js

Removed info whether user is or is not a bot as it is useless
This commit is contained in:
Ninjdai 2023-01-08 17:48:59 +01:00 committed by GitHub
parent e3cfaf0fe8
commit 5493d40093
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,6 @@ module.exports = {
value: ``
+ `<:invisibleSpacer:1038116840360120360><:iconID:1038063974807261195> **ID:** ${user.id}\n`
+ `<:invisibleSpacer:1038116840360120360><:iconProfile:1038064029064773724> **Nom complet:** ${user.tag}\n`
+ `<:invisibleSpacer:1038116840360120360><:iconProfile:1038064029064773724> **Bot:** ${user.bot ? "Oui" : "Non"}\n`
+ `<:invisibleSpacer:1038116840360120360><:iconTimer:1038063915151654932> **Créé:** <t:${Math.floor(user.createdTimestamp / 1000)}:d>`
,
inline: false
@ -58,4 +57,4 @@ module.exports = {
ephemeral: false
});
}
}
}