diff --git a/src/structures/Role.js b/src/structures/Role.js index 7846c6cc5..fe4fd85e0 100644 --- a/src/structures/Role.js +++ b/src/structures/Role.js @@ -241,8 +241,7 @@ class Role { * .catch(console.error); */ setPosition(position) { - return new Promise( - (resolve, reject) => this.guild.setRolePosition(this, position).then(() => resolve(this), reject)); + return this.guild.setRolePosition(this, position).then(() => this); } /**