diff --git a/src/structures/Presence.js b/src/structures/Presence.js index eb6e2d0..b9e0c0b 100644 --- a/src/structures/Presence.js +++ b/src/structures/Presence.js @@ -300,7 +300,9 @@ class Activity { this.type === activity.type && this.url === activity.url && this.state === activity.state && - this.details === activity.details) + this.details === activity.details && + this.emoji?.id === activity.emoji?.id && + this.emoji?.name === activity.emoji?.name) ); }