Home > database >  Display role separately while creating role discord.py
Display role separately while creating role discord.py

Time:10-23

How can i display role members separately from online members, when i creating role?

Need to enable this

CodePudding user response:

As you can see in the discord.Guild.create_role() documentation, you need to set to true parameter "hoist".

hoist (bool) – Indicates if the role should be shown separately in the member list. Defaults to False

  • Related