From a37a2c051b9b7bfc57fab86da30af3fa6234eab1 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 6 Mar 2021 13:43:20 -0500 Subject: [PATCH] Fix --- structures/Cleverbot.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/structures/Cleverbot.js b/structures/Cleverbot.js index 09cb776a..f8a7c414 100644 --- a/structures/Cleverbot.js +++ b/structures/Cleverbot.js @@ -41,10 +41,10 @@ module.exports = class Cleverbot { } get channel() { - return this.client.channels.cache.get(channelID); + return this.client.channels.cache.get(this.channelID); } get author() { - return this.client.users.cache.get(authorID); + return this.client.users.cache.get(this.authorID); } };