From 281072be4488cba05f4db6c5cd6c7e3c49a9380f Mon Sep 17 00:00:00 2001 From: didinele Date: Sun, 4 Jul 2021 17:59:28 +0300 Subject: [PATCH] chore: remove unnecessary getter (#6037) --- src/index.js | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/index.js b/src/index.js index d1643d464..8ec1ab8dd 100644 --- a/src/index.js +++ b/src/index.js @@ -67,10 +67,7 @@ module.exports = { CategoryChannel: require('./structures/CategoryChannel'), Channel: require('./structures/Channel'), ClientApplication: require('./structures/ClientApplication'), - get ClientUser() { - // This is a getter so that it properly extends any custom User class - return require('./structures/ClientUser'); - }, + ClientUser: require('./structures/ClientUser'), Collector: require('./structures/interfaces/Collector'), CommandInteraction: require('./structures/CommandInteraction'), DMChannel: require('./structures/DMChannel'),