This commit is contained in:
iDutchy
2020-10-17 18:42:19 -05:00
parent a09e096d42
commit d75cd66b90
14 changed files with 128 additions and 5 deletions

View File

@@ -92,6 +92,9 @@ class BaseUser(_BaseUser):
def __str__(self):
return '{0.name}#{0.discriminator}'.format(self)
def __int__(self):
return self.id
def __eq__(self, other):
return isinstance(other, _BaseUser) and other.id == self.id