From 12cb0743168b4d4af74a7906fd636ecce651ea64 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Mon, 24 Sep 2018 20:19:47 -0400 Subject: [PATCH] Take the default role property into account when comparing roles. --- discord/role.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/discord/role.py b/discord/role.py index e134667bc..086d5e554 100644 --- a/discord/role.py +++ b/discord/role.py @@ -113,6 +113,12 @@ class Role(Hashable): if self.guild != other.guild: raise RuntimeError('cannot compare roles from two different guilds.') + # the @everyone role is always the lowest role in hierarchy + guild_id = self.guild.id + if self.id == guild_id: + # everyone_role < everyone_role -> False + return other.id != guild_id + if self.position < other.position: return True