diff --git a/discord/role.py b/discord/role.py index 14036a440..adb8cf69d 100644 --- a/discord/role.py +++ b/discord/role.py @@ -252,7 +252,7 @@ class Role(Hashable): return True if self.position == other.position: - return int(self.id) > int(other.id) + return self.id > other.id return False