summaryrefslogtreecommitdiff
path: root/commands
diff options
context:
space:
mode:
authorAndrew Lee <alee14498@protonmail.com>2020-12-22 18:03:40 -0500
committerAndrew Lee <alee14498@protonmail.com>2020-12-22 18:03:40 -0500
commit484f03ebb89cf2209311bbcbedd05f70ef3cb19a (patch)
tree1f4b7536803bc9bf56a044ef45212403204bd389 /commands
parentc715e5f2fba9d8340f503080a2a5c46da0a5e70f (diff)
downloadAleeBot-484f03ebb89cf2209311bbcbedd05f70ef3cb19a.tar.gz
AleeBot-484f03ebb89cf2209311bbcbedd05f70ef3cb19a.tar.bz2
AleeBot-484f03ebb89cf2209311bbcbedd05f70ef3cb19a.zip
Added UTC
Diffstat (limited to 'commands')
-rw-r--r--commands/userinfo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/userinfo.js b/commands/userinfo.js
index c03dfed..74193ef 100644
--- a/commands/userinfo.js
+++ b/commands/userinfo.js
@@ -27,7 +27,7 @@ module.exports.run = async (client, message) => {
.addField('Identity', `**User ID:** ${message.author.id} `)
.addField('Create and Join Times', '**Created At:** ' + message.member.user.createdAt.toUTCString() + '\n**Joined Guild At:** ' + message.member.joinedAt.toUTCString())
.setColor('#1fd619');
- message.channel.send({embed});
+ await message.channel.send({embed});
};
exports.conf = {