off by one

This commit is contained in:
Cynthia Foxwell 2023-10-07 22:58:44 -06:00
parent 429349c8a6
commit d4e47ed94d
1 changed files with 1 additions and 1 deletions

View File

@ -1566,7 +1566,7 @@ appinfo.callback = async function (msg, line) {
embed.fields.push({
name: "Bot",
value:
formatUsername(bot) + ((bot.flags & 65535) != 0 ? " \u2713" : ""),
formatUsername(bot) + ((bot.flags & 65536) != 0 ? " \u2713" : ""),
inline: false,
});
} catch {