Fix issue where events would not load

This commit is contained in:
Ethan Lane 2021-12-22 20:15:33 +00:00
parent 3b9231644a
commit c986055698
Signed by: Vylpes
GPG key ID: EED233CC06D12504
2 changed files with 2 additions and 1 deletions

View file

@ -53,5 +53,7 @@ export class CoreClient extends Client {
const item: IEventItem = {
Event: event,
};
this._eventItems.push(item);
}
}

View file

@ -1,4 +1,3 @@
import { Message } from "discord.js";
import { ICommandContext } from "../contracts/ICommandContext";
export class Command {