Skip to content

Commit

Permalink
fix(GuildEmoji): check for cahnges to available in equals (#5201)
Browse files Browse the repository at this point in the history
  • Loading branch information
ckohen committed Jan 22, 2021
1 parent 0d5de43 commit f95f5dc
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/structures/GuildEmoji.js
Expand Up @@ -150,6 +150,7 @@ class GuildEmoji extends BaseGuildEmoji {
other.id === this.id &&
other.name === this.name &&
other.managed === this.managed &&
other.available === this.available &&
other.requiresColons === this.requiresColons &&
other.roles.cache.size === this.roles.cache.size &&
other.roles.cache.every(role => this.roles.cache.has(role.id))
Expand Down

0 comments on commit f95f5dc

Please sign in to comment.