forked from Supositware/Haha-Yes
Don't show "Is a bot?" if user is not a bot
This commit is contained in:
parent
4dc4019589
commit
d77f623257
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue