File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/main/java/net/javadiscord/javabot/systems/qotw/jobs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -117,13 +117,13 @@ public void execute() throws SQLException {
117117 SelectOption .of ("Accept" , SubmissionStatus .ACCEPT .name ())
118118 .withDescription ("The overall submission is correct" )
119119 .withEmoji (emojiConfig .getSuccessEmote (jda )),
120- SelectOption .of ("Decline: Wrong Answer" , SubmissionStatus .DECLINE .name () + ":1" )
120+ SelectOption .of ("Decline: Wrong Answer" , SubmissionStatus .DECLINE_WRONG_ANSWER .name ())
121121 .withDescription ("The submission is simply wrong or falsely explained" )
122122 .withEmoji (emojiConfig .getFailureEmote (jda )),
123- SelectOption .of ("Decline: Too short" , SubmissionStatus .DECLINE .name () + ":2" )
123+ SelectOption .of ("Decline: Too short" , SubmissionStatus .DECLINE_TOO_SHORT .name ())
124124 .withDescription ("The submission is way to short in comparison to other submissions" )
125125 .withEmoji (emojiConfig .getFailureEmote (jda )),
126- SelectOption .of ("Decline: Empty Submission" , SubmissionStatus .DECLINE .name () + ":3" )
126+ SelectOption .of ("Decline: Empty Submission" , SubmissionStatus .DECLINE_EMPTY .name ())
127127 .withDescription ("The submission was empty" )
128128 .withEmoji (emojiConfig .getFailureEmote (jda ))
129129 ).build ();
You can’t perform that action at this time.
0 commit comments