diff --git a/discord/mixins.py b/discord/mixins.py index 0ed579454..a0cf04802 100644 --- a/discord/mixins.py +++ b/discord/mixins.py @@ -39,4 +39,4 @@ class Hashable(EqualityComparable): __slots__ = () def __hash__(self): - return hash(self.id) + return self.id >> 22 diff --git a/discord/user.py b/discord/user.py index c3c0d9c21..bbc6d1cc3 100644 --- a/discord/user.py +++ b/discord/user.py @@ -81,7 +81,7 @@ class User(discord.abc.Messageable): return not self.__eq__(other) def __hash__(self): - return hash(self.id) + return self.id >> 22 def __repr__(self): return ''.format(self)