utility.appinfo: add verified check to bot
This commit is contained in:
parent
0bc9e05da8
commit
c4e6f68787
1 changed files with 3 additions and 2 deletions
|
@ -1565,7 +1565,8 @@ appinfo.callback = async function (msg, line) {
|
||||||
|
|
||||||
embed.fields.push({
|
embed.fields.push({
|
||||||
name: "Bot",
|
name: "Bot",
|
||||||
value: formatUsername(bot),
|
value:
|
||||||
|
formatUsername(bot) + (bot.flags & (65535 != 0) ? " \u2713" : ""),
|
||||||
inline: false,
|
inline: false,
|
||||||
});
|
});
|
||||||
} catch {
|
} catch {
|
||||||
|
@ -1682,7 +1683,7 @@ appinfo.callback = async function (msg, line) {
|
||||||
value: assets
|
value: assets
|
||||||
.map((asset) =>
|
.map((asset) =>
|
||||||
asset.name.length > 32
|
asset.name.length > 32
|
||||||
? asset.name.substring(0, 32) + "\u2026"
|
? asset.name.substring(0, 31) + "\u2026"
|
||||||
: asset.name
|
: asset.name
|
||||||
)
|
)
|
||||||
.join(", "),
|
.join(", "),
|
||||||
|
|
Loading…
Reference in a new issue