Webpack build for branch master: 1e47cfdd5d

This commit is contained in:
Travis CI 2017-06-07 21:51:29 +00:00
parent d4871bd15c
commit b8c0a907cc
2 changed files with 18 additions and 4 deletions

View file

@ -13230,7 +13230,9 @@ module.exports = PartialGuildChannel;
/***/ }), /***/ }),
/* 52 */ /* 52 */
/***/ (function(module, exports) { /***/ (function(module, exports, __webpack_require__) {
const Permissions = __webpack_require__(9);
/** /**
* Represents a permission overwrite for a role or member in a guild channel. * Represents a permission overwrite for a role or member in a guild channel.
@ -13261,8 +13263,20 @@ class PermissionOverwrites {
*/ */
this.type = data.type; this.type = data.type;
this.deny = data.deny; this._denied = data.deny;
this.allow = data.allow; this._allowed = data.allow;
/**
* The permissions that are denied for the user or role.
* @type {Permissions}
*/
this.denied = new Permissions(this._denied);
/**
* The permissions that are allowed for the user or role.
* @type {Permissions}
*/
this.allowed = new Permissions(this._allowed);
} }
/** /**

File diff suppressed because one or more lines are too long