diff --git a/discord/object.py b/discord/object.py index 2243a0408..885ad4dc2 100644 --- a/discord/object.py +++ b/discord/object.py @@ -102,7 +102,7 @@ class Object(Hashable): return f'' def __eq__(self, other: object) -> bool: - if isinstance(other, self.type): + if isinstance(other, (self.type, self.__class__)): return self.id == other.id return NotImplemented