Fix issue where event files existing would crash the bot #68

Merged
Vylpes merged 1 commit from bug/67-type-error into main 2021-12-02 15:30:09 +00:00

View file

@ -97,9 +97,9 @@ export class Util {
if (eventFiles[i].includes('.ts')) {
const eventName = eventFiles[i].split('.')[0];
const file = require(`${process.cwd()}/${folder}/${eventName}.ts`);
const file = require(`${process.cwd()}/${folder}/${eventName}.ts`).default;
const event = new file[eventName]() as Event;
const event = new file() as Event;
// Load events
client.on('channelCreate', event.channelCreate);