Organized the lists into a lists folder
This commit is contained in:
parent
db10b2a32f
commit
6b095957e4
4 changed files with 3 additions and 3 deletions
6
index.js
6
index.js
|
@ -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 = [];
|
||||
|
|
Loading…
Reference in a new issue