Organized the lists into a lists folder

This commit is contained in:
Paul Black 2023-09-04 02:03:05 -06:00
parent db10b2a32f
commit 6b095957e4
4 changed files with 3 additions and 3 deletions

View file

@ -7,9 +7,9 @@ const {
const Tesseract = require('tesseract.js');
const fs = require('fs');
const badWordsList = 'badwords.txt';
const potentialBadWordsList = 'potentialbadwords.txt';
const whitelistList = 'whitelist.txt';
const badWordsList = './lists/badwords.txt';
const potentialBadWordsList = './lists/potentialbadwords.txt';
const whitelistList = './lists/whitelist.txt';
//The arrays are filled at runtime in bot.on('ready')
let badWords = [];