Webpack build for branch 11.3-dev: ed8ab91782

This commit is contained in:
Travis CI 2018-05-08 09:41:19 +00:00
parent 60b9ec7db6
commit 2bebcfe6ad
2 changed files with 11 additions and 1 deletions

View file

@ -6559,6 +6559,7 @@ module.exports = Message;
const Constants = __webpack_require__(0);
const Collection = __webpack_require__(3);
const Permissions = __webpack_require__(6);
const Snowflake = __webpack_require__(5);
/**
@ -6635,6 +6636,15 @@ class Emoji {
return new Date(this.createdTimestamp);
}
/**
* Whether the moej is deletable by the client user
* @type {boolean}
* @readonly
*/
get deletable() {
return !this.managed && this.guild.me.hasPermission(Permissions.FLAGS.MANAGE_EMOJIS);
}
/**
* A collection of roles this emoji is active for (empty if all), mapped by role ID
* @type {Collection<Snowflake, Role>}

File diff suppressed because one or more lines are too long