fix(Role): calculate position correctly when rawPositions are equal
#9872 djs
This commit is contained in:
parent
58f7e5299b
commit
a25d839f99
@ -231,7 +231,7 @@ class Role extends Base {
|
|||||||
let count = 0;
|
let count = 0;
|
||||||
for (const role of this.guild.roles.cache.values()) {
|
for (const role of this.guild.roles.cache.values()) {
|
||||||
if (this.rawPosition > role.rawPosition) count++;
|
if (this.rawPosition > role.rawPosition) count++;
|
||||||
else if (this.rawPosition === role.rawPosition && BigInt(this.id) > BigInt(role.id)) count++;
|
else if (this.rawPosition === role.rawPosition && BigInt(this.id) < BigInt(role.id)) count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
return count;
|
return count;
|
||||||
|
Loading…
Reference in New Issue
Block a user