Merge pull request #68 from Vylpes/bug/67-type-error

Fix issue where event files existing would crash the bot
This commit is contained in:
Vylpes 2021-12-02 15:30:08 +00:00 committed by GitHub
commit 7861829f5d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -95,11 +95,11 @@ export class Util {
for (let i = 0; i < eventFiles.length; i++) {
if (eventFiles[i].includes('.ts')) {
const eventName = eventFiles[i].split('.')[0];
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);