Role.is_everyone actually uses the proper check.

This commit is contained in:
Rapptz 2015-11-09 00:33:15 -05:00
parent 054cf2e1e0
commit 85ac03a081

View File

@ -73,4 +73,4 @@ class Role(object):
def is_everyone(self):
"""Checks if the role is the @everyone role."""
return self.position == -1
return self._is_everyone