diff --git a/src/structures/guild.ts b/src/structures/guild.ts index 04ebcfe..c1af7ca 100644 --- a/src/structures/guild.ts +++ b/src/structures/guild.ts @@ -313,14 +313,14 @@ export class Guild extends Base { async awaitAvailability(delay: number = 1000): Promise { return await new Promise((resolve, reject) => { if(!this.unavailable) return; - var listener = (guild: Guild): void => { + let listener = (guild: Guild): void => { if (guild.id === this.id) { - this.removeListener('guildLoaded', listener); + this.client.removeListener('guildLoaded', listener); resolve(); } }; this.client.on('guildLoaded', listener); - } + }); } }