From d0f2caab9ccd1f616a5e42e3ba21d890054b9cfd Mon Sep 17 00:00:00 2001 From: WatDuhHekBro <44940783+WatDuhHekBro@users.noreply.github.com> Date: Fri, 10 Jul 2020 16:04:27 -0500 Subject: [PATCH] Removed panel reference in index --- src/index.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/index.js b/src/index.js index 92c78f0..282addf 100644 --- a/src/index.js +++ b/src/index.js @@ -3,8 +3,7 @@ const BotClient = require('./Structures/BotClient'); const config = require('../data/config.json'); - const panel = require('./panel.js'); - const client = new BotClient(config, panel); + const client = new BotClient(config); client.start(); })()