mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
Compare commits
No commits in common. "74d36e36b2ad1585ebb26059567086e8738c57a2" and "8b29163c2675025a718ee5068b4dfeb12fe84fda" have entirely different histories.
74d36e36b2
...
8b29163c26
1 changed files with 5 additions and 4 deletions
|
@ -183,10 +183,11 @@ export default new Command({
|
|||
`**❯ Server Join Date:** ${moment(member.joinedAt).format("LL LTS")}`,
|
||||
`**❯ Hoist Role:** ${member.roles.hoist ? member.roles.hoist.name : "None"}`,
|
||||
`**❯ Roles:** [${roles.length}]: ${
|
||||
roles.length == 0 ? "None"
|
||||
: roles.length <= 10
|
||||
roles.length < 10
|
||||
? roles.join(", ")
|
||||
: trimArray(roles).join(", ")
|
||||
: roles.length > 10
|
||||
? this.client.utils.trimArray(roles)
|
||||
: "None"
|
||||
}`
|
||||
]);
|
||||
$.channel.send(embed);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue