From 3e3861d70b4cdc0c01786056a62cd4120b0cf8a4 Mon Sep 17 00:00:00 2001 From: WubzyGD Date: Sat, 5 Feb 2022 23:43:50 -0700 Subject: [PATCH] full creation time in userinfo --- commands/misc/userinfo.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/misc/userinfo.js b/commands/misc/userinfo.js index 5b57e0f..66d790b 100644 --- a/commands/misc/userinfo.js +++ b/commands/misc/userinfo.js @@ -29,7 +29,7 @@ module.exports = { .setTitle(`User Info for ${name}`) .setDescription(`Requested by ${message.guild ? message.member.displayName : message.author.username}`) .setThumbnail((message.guild ? person : u).displayAvatarURL({size: 4096})) - .addField("Account Created", `${moment(u.createdAt).fromNow()}`, true) + .addField("Account Created", `${moment.preciseDiff(Date.now(), u.createdAt)} ago`, true) .addField("Bot User?", u.bot ? "Is a bot" : "Is not a bot", true) .setColor('c375f0') .setFooter({text: "Natsuki", iconURL: client.user.avatarURL()})