From 6b0abdb65a3a9ce7b77c9c505c09ffea5c8e5295 Mon Sep 17 00:00:00 2001 From: ION606 Date: Mon, 9 May 2022 12:14:23 +0300 Subject: [PATCH] Removed the remaining lines for SQLite from the main js file --- main.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.js b/main.js index 63a9391..57847b7 100644 --- a/main.js +++ b/main.js @@ -29,7 +29,7 @@ bot.econ = new Discord.Collection(); const commandFiles = fs.readdirSync('./commands/').filter(file => file.endsWith('.js')); -const econFiles = fs.readdirSync('./commands/currency').filter(file => file.endsWith('.js'));; + let i = 0; for (const file of commandFiles) { @@ -40,6 +40,7 @@ for (const file of commandFiles) { i ++; } +// const econFiles = fs.readdirSync('./commands/currency').filter(file => file.endsWith('.js'));; // ECON SECTION // bot.commands.set('ECON', require(`./commands/currency/app.js`)); // const currency = new Discord.Collection();