Remove debug code

This commit is contained in:
Ethan Lane 2022-04-14 18:00:35 +01:00
parent 8333d6385e
commit 7e96e81cbf
Signed by: Vylpes
GPG key ID: EED233CC06D12504
2 changed files with 1 additions and 4 deletions

View file

@ -50,8 +50,7 @@ export class CoreClient extends Client {
});
super.on("message", (message) => {
console.log("hello");
this._events.onMessage(message, this._commandItems);
this._events.onMessage(message, this._commandItems)
});
super.on("ready", this._events.onReady);

View file

@ -13,8 +13,6 @@ export class Events {
// Emit when a message is sent
// Used to check for commands
public async onMessage(message: Message, commands: ICommandItem[]) {
console.log("h");
if (!message.guild) return;
if (message.author.bot) return;