From baf17e6c7691f2058ee6efab3566243309b1ed2d Mon Sep 17 00:00:00 2001 From: Keanu Date: Fri, 29 Jan 2021 00:57:50 +0100 Subject: [PATCH] Corrected usage of trimarray in info. --- src/commands/info.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/info.ts b/src/commands/info.ts index d87044f..e57e242 100644 --- a/src/commands/info.ts +++ b/src/commands/info.ts @@ -186,7 +186,7 @@ export default new Command({ roles.length < 10 ? roles.join(", ") : roles.length > 10 - ? this.client.utils.trimArray(roles) + ? trimArray(roles) : "None" }` ]);