diff --git a/src/structures/Guild.js b/src/structures/Guild.js index 4d3e5f45f..da3e73f2c 100644 --- a/src/structures/Guild.js +++ b/src/structures/Guild.js @@ -216,7 +216,7 @@ class Guild extends Base { * @type {EmojiStore} */ this.emojis = new EmojiStore(this); - for (const emoji of data.emojis) this.emojis.create(emoji); + if (data.emojis) for (const emoji of data.emojis) this.emojis.create(emoji); } else { this.client.actions.GuildEmojisUpdate.handle({ guild_id: this.id,