Compare commits

..

No commits in common. "4222046c20942080ed862e959c750c2f4c01bb84" and "38803d519d66287d2e570af870ec9d54d735d638" have entirely different histories.

2 changed files with 2 additions and 10 deletions

View File

@ -18,11 +18,6 @@
<artifactId>mariadb-java-client</artifactId>
<version>3.0.3</version>
</dependency>
<dependency>
<groupId>com.vdurmont</groupId>
<artifactId>emoji-java</artifactId>
<version>5.1.1</version>
</dependency>
</dependencies>
<properties>
<maven.compiler.source>17</maven.compiler.source>

View File

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