From 93cf34a814d985c0efa0b5518fdd13ddb725c8b2 Mon Sep 17 00:00:00 2001 From: Schuyler Cebulskie Date: Sat, 1 Oct 2016 02:58:32 -0400 Subject: [PATCH] I found some more. --- src/structures/GuildMember.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/structures/GuildMember.js b/src/structures/GuildMember.js index b27ec4b6c..737424032 100644 --- a/src/structures/GuildMember.js +++ b/src/structures/GuildMember.js @@ -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); } /**