Corrected usage of trimarray in info.

This commit is contained in:
Keanu Timmermans 2021-01-29 00:57:50 +01:00
parent 8b29163c26
commit baf17e6c76
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ export default new Command({
roles.length < 10 roles.length < 10
? roles.join(", ") ? roles.join(", ")
: roles.length > 10 : roles.length > 10
? this.client.utils.trimArray(roles) ? trimArray(roles)
: "None" : "None"
}` }`
]); ]);