off by one
This commit is contained in:
parent
429349c8a6
commit
d4e47ed94d
1 changed files with 1 additions and 1 deletions
|
@ -1566,7 +1566,7 @@ appinfo.callback = async function (msg, line) {
|
||||||
embed.fields.push({
|
embed.fields.push({
|
||||||
name: "Bot",
|
name: "Bot",
|
||||||
value:
|
value:
|
||||||
formatUsername(bot) + ((bot.flags & 65535) != 0 ? " \u2713" : ""),
|
formatUsername(bot) + ((bot.flags & 65536) != 0 ? " \u2713" : ""),
|
||||||
inline: false,
|
inline: false,
|
||||||
});
|
});
|
||||||
} catch {
|
} catch {
|
||||||
|
|
Loading…
Reference in a new issue