boot fixes
parent
09bdc2867e
commit
4c0d5cad32
|
@ -64,7 +64,7 @@ export default class Client extends Eris.Client {
|
||||||
private async loadFunctions() {
|
private async loadFunctions() {
|
||||||
const functions = await fs.readdir('./functions');
|
const functions = await fs.readdir('./functions');
|
||||||
functions.forEach(async (func) => {
|
functions.forEach(async (func) => {
|
||||||
if (func === 'index.ts' || func === 'index.js') return;
|
if (func === 'index.ts' || func === 'index.js' || func === 'dataConversion.js') return;
|
||||||
try {
|
try {
|
||||||
(require(`./functions/${func}`).default)(this);
|
(require(`./functions/${func}`).default)(this);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
|
|
Loading…
Reference in New Issue