diff --git a/src/Discord.Net.Core/Entities/Emotes/Emote.cs b/src/Discord.Net.Core/Entities/Emotes/Emote.cs index bebd9fa4f6..97fadbcc1b 100644 --- a/src/Discord.Net.Core/Entities/Emotes/Emote.cs +++ b/src/Discord.Net.Core/Entities/Emotes/Emote.cs @@ -50,7 +50,7 @@ public override bool Equals(object other) var otherEmote = other as Emote; if (otherEmote == null) return false; - return string.Equals(Name, otherEmote.Name) && Id == otherEmote.Id; + return Id == otherEmote.Id; } ///