mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-15 02:53:31 +01:00
fix permissions not resolving correctly (#1928)
This commit is contained in:
@@ -57,7 +57,7 @@ class Permissions {
|
|||||||
let total = 0;
|
let total = 0;
|
||||||
for (let p = permissions.length - 1; p >= 0; p--) {
|
for (let p = permissions.length - 1; p >= 0; p--) {
|
||||||
const perm = this.constructor.resolve(permissions[p]);
|
const perm = this.constructor.resolve(permissions[p]);
|
||||||
if ((this.bitfield & perm) !== perm) total |= perm;
|
total |= perm;
|
||||||
}
|
}
|
||||||
if (Object.isFrozen(this)) return new this.constructor(this.bitfield | total);
|
if (Object.isFrozen(this)) return new this.constructor(this.bitfield | total);
|
||||||
this.bitfield |= total;
|
this.bitfield |= total;
|
||||||
@@ -73,7 +73,7 @@ class Permissions {
|
|||||||
let total = 0;
|
let total = 0;
|
||||||
for (let p = permissions.length - 1; p >= 0; p--) {
|
for (let p = permissions.length - 1; p >= 0; p--) {
|
||||||
const perm = this.constructor.resolve(permissions[p]);
|
const perm = this.constructor.resolve(permissions[p]);
|
||||||
if ((this.bitfield & perm) === perm) total |= perm;
|
total |= perm;
|
||||||
}
|
}
|
||||||
if (Object.isFrozen(this)) return new this.constructor(this.bitfield & ~total);
|
if (Object.isFrozen(this)) return new this.constructor(this.bitfield & ~total);
|
||||||
this.bitfield &= ~total;
|
this.bitfield &= ~total;
|
||||||
|
|||||||
Reference in New Issue
Block a user