I found some more.

This commit is contained in:
Schuyler Cebulskie
2016-10-01 02:58:32 -04:00
parent d1e07674b8
commit 93cf34a814

View File

@@ -207,7 +207,7 @@ class GuildMember {
const clientRole = clientMember.highestRole;
const thisRole = this.highestRole;
return clientRole.position > thisRole.position ||
(clientRole.position === thisRole.position && clientRole.id < thisRole.position);
(clientRole.position === thisRole.position && clientRole.id < thisRole.id);
}
/**
@@ -223,7 +223,7 @@ class GuildMember {
const clientRole = clientMember.highestRole;
const thisRole = this.highestRole;
return clientRole.position > thisRole.position ||
(clientRole.position === thisRole.position && clientRole.id < thisRole.position);
(clientRole.position === thisRole.position && clientRole.id < thisRole.id);
}
/**