From 4b7f1d65fe7cd36ca86e2417e5849871b82e5458 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Mon, 22 Aug 2022 08:10:27 -0400 Subject: don't show both bot emojis --- src/commands/info/userInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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) { -- cgit