diff --git a/src/commands/info.ts b/src/commands/info.ts index e57e242..1a6b401 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -183,11 +183,10 @@ 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 < 10 - ? roles.join(", ") - : roles.length > 10 - ? trimArray(roles) - : "None" + roles.length == 0 ? "None" + : roles.length <= 10 + ? roles.join(", ") + : trimArray(roles).join(", ") }` ]); $.channel.send(embed);