From 6bc42686376848a03c512ad5cbdc9fccfd512820 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Tue, 18 May 2021 16:38:17 -0400 Subject: [PATCH] Fix --- structures/Client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/structures/Client.js b/structures/Client.js index 05184057..64273798 100644 --- a/structures/Client.js +++ b/structures/Client.js @@ -210,7 +210,7 @@ module.exports = class XiaoClient extends CommandoClient { exportCleverbotAllowed() { let text = '[\n '; if (this.allowedUsers.length) { - for (const id of this.allowedUsers.guild) { + for (const id of this.allowedUsers) { text += `"${id}",\n `; } text = text.slice(0, -3);