Class GuildMemberRoleAddEvent

  • All Implemented Interfaces:
    GenericEvent

    public class GuildMemberRoleAddEvent
    extends GenericGuildMemberEvent
    Indicates that one or more Roles were assigned to a Member.

    Can be used to retrieve affected member and guild. Provides a list of added roles.

    Requirements

    This event requires the GUILD_MEMBERS intent to be enabled.
    createDefault(String) and createLight(String) disable this by default!

    Additionally, this event requires the MemberCachePolicy to cache the updated members. Discord does not specifically tell us about the role updates, but merely tells us the member was updated and gives us the updated member object. In order to fire a specific event like this we need to have the old member cached to compare against.

    • Constructor Detail

      • GuildMemberRoleAddEvent

        public GuildMemberRoleAddEvent​(@Nonnull
                                       JDA api,
                                       long responseNumber,
                                       @Nonnull
                                       Member member,
                                       @Nonnull
                                       java.util.List<Role> addedRoles)
    • Method Detail

      • getRoles

        @Nonnull
        public java.util.List<Role> getRoles()
        The list of roles that were added
        Returns:
        The list of roles that were added