mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
Corrected usage of trimarray in info.
This commit is contained in:
parent
8b29163c26
commit
baf17e6c76
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||||
}`
|
}`
|
||||||
]);
|
]);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue