trying to get the thing to add and recognize reactions

master
BodgeMaster 2022-02-22 20:02:16 +01:00
parent a4a004cf94
commit d59774b0c2
1 changed files with 4 additions and 2 deletions

View File

@ -6,6 +6,8 @@ import org.javacord.api.entity.emoji.Emoji;
import org.javacord.api.entity.message.Message; import org.javacord.api.entity.message.Message;
import org.javacord.api.entity.user.User; import org.javacord.api.entity.user.User;
import com.vdurmont.emoji.EmojiParser;
import linux.general.hackyquizbot.QuizBackend.Question; import linux.general.hackyquizbot.QuizBackend.Question;
public class QuizHandler { public class QuizHandler {
@ -22,9 +24,9 @@ public class QuizHandler {
+ " Please contact @BodgeMaster#0344 if there are any issues.\n" + " Please contact @BodgeMaster#0344 if there are any issues.\n"
+ "\n" + "\n"
+ "Select the :white_check_mark: reaction to continue.").get(); + "Select the :white_check_mark: reaction to continue.").get();
message.addReaction("✅"); message.addReaction(EmojiParser.parseToUnicode(":white_check_mark:"));
message.addReactionAddListener(event -> { message.addReactionAddListener(event -> {
if (event.getReaction().get().getEmoji().equalsEmoji("✅")) { if (event.getReaction().get().getEmoji().equalsEmoji(EmojiParser.parseToUnicode(":white_check_mark:"))) {
event.getMessage().get().getChannel().sendMessage("test"); event.getMessage().get().getChannel().sendMessage("test");
} }
}); });