From 0c6d3523f53f50977302e787ea58c7c297b35515 Mon Sep 17 00:00:00 2001 From: loicbersier Date: Fri, 15 Nov 2019 21:55:55 +0100 Subject: [PATCH] Moved the blank field lower --- commands/utility/userInfo.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/commands/utility/userInfo.js b/commands/utility/userInfo.js index fc91b2a5..323dcba7 100644 --- a/commands/utility/userInfo.js +++ b/commands/utility/userInfo.js @@ -37,12 +37,13 @@ class userInfoCommand extends Command { .addField('Current rank hex color', member.displayHexColor, true) .addField('Joined guild at', member.joinedAt, true) .addField('Date when account created', user.createdAt, true) - .addBlankField() .setTimestamp(); // Show user status if (user.presence.activity) Embed.addField('Presence', user.presence.activity, true); + Embed.addBlankField(); + // Show on which platform they are using discord from if (user.presence.clientStatus) { if (user.presence.clientStatus['mobile']) Embed.addField('Using discord on', '📱 ' + user.presence.clientStatus['mobile'], true);