diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-22 08:10:27 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-08-22 08:10:27 -0400 |
commit | 4b7f1d65fe7cd36ca86e2417e5849871b82e5458 (patch) | |
tree | 83227d3794b2adb6675b3955f7daa9dcc6d0f212 | |
parent | d01c331df293a585ef0f854dc24b04568df65b6e (diff) | |
download | tanzanite-4b7f1d65fe7cd36ca86e2417e5849871b82e5458.tar.gz tanzanite-4b7f1d65fe7cd36ca86e2417e5849871b82e5458.tar.bz2 tanzanite-4b7f1d65fe7cd36ca86e2417e5849871b82e5458.zip |
don't show both bot emojis
-rw-r--r-- | src/commands/info/userInfo.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/info/userInfo.ts b/src/commands/info/userInfo.ts index 6def866..045087f 100644 --- a/src/commands/info/userInfo.ts +++ b/src/commands/info/userInfo.ts @@ -87,7 +87,7 @@ export default class UserInfoCommand extends BushCommand { if (user.client.config.owners.includes(user.id)) emojis.push(mappings.otherEmojis.Developer); if (superUsers.includes(user.id)) emojis.push(mappings.otherEmojis.Superuser); - if (user.bot) emojis.push(mappings.otherEmojis.Bot); + if (user.bot && !user.flags?.has('VerifiedBot')) emojis.push(mappings.otherEmojis.Bot); const flags = user.flags?.toArray(); if (flags) { |