This commit is contained in:
Dragon Fire
2021-03-06 13:43:20 -05:00
parent 3cbe54ee88
commit a37a2c051b
+2 -2
View File
@@ -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);
}
};