From d77f6232571833ad9dcba51313875d1ceeee0cf0 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Thu, 9 Jan 2020 23:38:03 +0100 Subject: [PATCH] Don't show "Is a bot?" if user is not a bot --- commands/utility/userInfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/utility/userInfo.js b/commands/utility/userInfo.js index b438542b..facb9855 100644 --- a/commands/utility/userInfo.js +++ b/commands/utility/userInfo.js @@ -48,7 +48,7 @@ class userInfoCommand extends Command { if (user.presence.activity) Embed.addField('Presence', user.presence.activity, true); // Is the user a bot? - if (user.bot) Embed.addField('Is a bot?', '✅', true); else if (!user.bot) Embed.addField('Is a bot?', '❌', true); + if (user.bot) Embed.addField('Is a bot?', '✅', true); // Show guild nickname if (member.nickname) Embed.addField('Nickname', member.nickname, true);