diff --git a/src/structures/Role.js b/src/structures/Role.js index c9ab6075e..2c9bbbbfe 100644 --- a/src/structures/Role.js +++ b/src/structures/Role.js @@ -205,9 +205,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,