Webpack build for branch master: 30dd9be900

This commit is contained in:
Travis CI 2017-03-06 07:31:29 +00:00
parent 619d8bff67
commit f4df7fa410
2 changed files with 3 additions and 3 deletions

View file

@ -1199,7 +1199,7 @@ class Permissions {
const perm = this.constructor.resolve(permissions[p]); const perm = this.constructor.resolve(permissions[p]);
if ((this.bitfield & perm) !== perm) total |= perm; if ((this.bitfield & perm) !== perm) total |= perm;
} }
return new this.constructor(this.bitfield | total); return new this.constructor(this.member, this.bitfield | total);
} }
/** /**
@ -1213,7 +1213,7 @@ class Permissions {
const perm = this.constructor.resolve(permissions[p]); const perm = this.constructor.resolve(permissions[p]);
if ((this.bitfield & perm) === perm) total |= perm; if ((this.bitfield & perm) === perm) total |= perm;
} }
return new this.constructor(this.bitfield & ~total); return new this.constructor(this.member, this.bitfield & ~total);
} }
/** /**

File diff suppressed because one or more lines are too long