diff --git a/src/structures/Sticker.js b/src/structures/Sticker.js index b72bad8975eb..f72c7fc83627 100644 --- a/src/structures/Sticker.js +++ b/src/structures/Sticker.js @@ -156,7 +156,7 @@ class Sticker extends Base { */ async fetchUser() { if (this.partial) await this.fetch(); - if (!this.guildID) throw new Error('NOT_GUILD_STICKER'); + if (!this.guildId) throw new Error('NOT_GUILD_STICKER'); const data = await this.client.api.guilds(this.guildId).stickers(this.id).get(); this._patch(data);