From b308793f61cf90dbd1323fb645dc84a4ac6af11e Mon Sep 17 00:00:00 2001 From: Navy Date: Sun, 20 Jun 2021 02:23:52 +0300 Subject: [PATCH] bugfix --- structure/commands/Queue.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structure/commands/Queue.js b/structure/commands/Queue.js index 99de248..fb76399 100644 --- a/structure/commands/Queue.js +++ b/structure/commands/Queue.js @@ -14,7 +14,7 @@ class Queue extends Command { const { queue } = this.client.modmail; if (!queue.length) return 'Queue is empty!'; - const users = this.client.resolveUsers(queue); + const users = await this.client.resolveUsers(queue); let str = ``, count = 0; for (const user of users) {