Skip to content

Commit

Permalink
Fixed wrong timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
codecat committed Jul 17, 2021
1 parent f6a82b5 commit d75e90a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/tools.js
Expand Up @@ -40,7 +40,7 @@ class ToolsModule

msg.channel.send(
"**Info for non-member " + fetcheduser.tag + "**:\n" +
":alarm_clock: Account age: **<t:" + createdAt.unix() + ":R>** - <t:" + createdAt.format() + ":F>"
":alarm_clock: Account age: **<t:" + createdAt.unix() + ":R>** - <t:" + createdAt.unix() + ":F>"
);
});
return;
Expand Down

0 comments on commit d75e90a

Please sign in to comment.