How can I check, which reaction was added to a message? I want to create a command (!roles) with some reaction and if you click on one, you get a role. I tried like this:
if(event.getReactionEmote().emote == ":salt:") {
Guild guild = event.getGuild();
guild.addRoleToMember(event.getMember(), guild.getRoleById("*ROLEID*")).queue();
}
But it does not work.