From cdfbe9b1405d3ecb14dfe412785334c23c901278 Mon Sep 17 00:00:00 2001 From: mrxbox98 <23saahilt@students.harker.org> Date: Mon, 9 Aug 2021 21:42:43 -0700 Subject: [PATCH] Fixed chalk not being imported This would throw an error before as chalk was not imported --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 4cf5d39..9172a9c 100644 --- a/index.js +++ b/index.js @@ -2,6 +2,7 @@ const { Client, Collection } = require('discord.js') const fs = require('fs') const client = new Client() const yaml = require('js-yaml') +const chalk = require('chalk') const config = yaml.load(fs.readFileSync('./config.yml', 'utf8')) client.config = config