Moved the blank field lower
This commit is contained in:
parent
fc1458e9c3
commit
0c6d3523f5
1 changed files with 2 additions and 1 deletions
|
@ -37,12 +37,13 @@ class userInfoCommand extends Command {
|
||||||
.addField('Current rank hex color', member.displayHexColor, true)
|
.addField('Current rank hex color', member.displayHexColor, true)
|
||||||
.addField('Joined guild at', member.joinedAt, true)
|
.addField('Joined guild at', member.joinedAt, true)
|
||||||
.addField('Date when account created', user.createdAt, true)
|
.addField('Date when account created', user.createdAt, true)
|
||||||
.addBlankField()
|
|
||||||
.setTimestamp();
|
.setTimestamp();
|
||||||
|
|
||||||
// Show user status
|
// Show user status
|
||||||
if (user.presence.activity) Embed.addField('Presence', user.presence.activity, true);
|
if (user.presence.activity) Embed.addField('Presence', user.presence.activity, true);
|
||||||
|
|
||||||
|
Embed.addBlankField();
|
||||||
|
|
||||||
// Show on which platform they are using discord from
|
// Show on which platform they are using discord from
|
||||||
if (user.presence.clientStatus) {
|
if (user.presence.clientStatus) {
|
||||||
if (user.presence.clientStatus['mobile']) Embed.addField('Using discord on', '📱 ' + user.presence.clientStatus['mobile'], true);
|
if (user.presence.clientStatus['mobile']) Embed.addField('Using discord on', '📱 ' + user.presence.clientStatus['mobile'], true);
|
||||||
|
|
Loading…
Reference in a new issue