Webpack build for branch master: a49709d329

This commit is contained in:
Travis CI 2017-08-09 23:22:24 +00:00
parent 1f6ff5686b
commit 886229b5e1
2 changed files with 3 additions and 2 deletions

View file

@ -8817,9 +8817,10 @@ class Role {
return this.client.api.guilds[this.guild.id].roles[this.id].patch({
data: {
name: data.name || this.name,
position: typeof data.position !== 'undefined' ? data.position : this.position,
color: Util.resolveColor(data.color || this.color),
hoist: typeof data.hoist !== 'undefined' ? data.hoist : this.hoist,
position: typeof data.position !== 'undefined' ? data.position : this.position,
permissions: data.permissions,
mentionable: typeof data.mentionable !== 'undefined' ? data.mentionable : this.mentionable,
},
reason,

File diff suppressed because one or more lines are too long