From bbbda4ec0072ae225b8feaba3c2ad65ac6f5490c Mon Sep 17 00:00:00 2001 From: Perry Cate Date: Thu, 14 Jan 2021 03:11:58 -0500 Subject: [PATCH] Update add_roles docstring to mention role order. --- discord/member.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/discord/member.py b/discord/member.py index 1e4717770..afce4c348 100644 --- a/discord/member.py +++ b/discord/member.py @@ -643,7 +643,8 @@ class Member(discord.abc.Messageable, _BaseUser): Gives the member a number of :class:`Role`\s. You must have the :attr:`~Permissions.manage_roles` permission to - use this. + use this, and the added :class:`Role`\s must appear lower in the list + of roles than the highest role of the member. Parameters ----------- @@ -681,7 +682,8 @@ class Member(discord.abc.Messageable, _BaseUser): Removes :class:`Role`\s from this member. You must have the :attr:`~Permissions.manage_roles` permission to - use this. + use this, and the removed :class:`Role`\s must appear lower in the list + of roles than the highest role of the member. Parameters -----------