From b462a7b94f46deff0fb6f77bfb345a7a5a746722 Mon Sep 17 00:00:00 2001 From: Isabella Date: Tue, 3 Oct 2017 13:12:38 -0600 Subject: [PATCH] fix(Role): setPosition typo (#2003) --- src/structures/Role.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Role.js b/src/structures/Role.js index 34e8449b7..04680b860 100644 --- a/src/structures/Role.js +++ b/src/structures/Role.js @@ -280,7 +280,7 @@ class Role extends Base { .then(updatedRoles => { this.client.actions.GuildRolesPositionUpdate.handle({ guild_id: this.guild.id, - channels: updatedRoles, + roles: updatedRoles, }); return this; });