We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 705b0b3 commit 9d8b001Copy full SHA for 9d8b001
src/main/java/core/StartMenuController.java
@@ -103,9 +103,7 @@ private void handlePlayButtonPressed(ActionEvent event) throws IOException {
103
}
104
105
private JokerRules getSelectedJokerRule() {
106
- if (this.jokerRules.getValue().equals("Default")) {
107
- return JokerRules.DEFAULT;
108
- } else if (this.jokerRules.getValue().equals("No Plays to Existing Melds")) {
+ if (this.jokerRules.getValue().equals("No Plays to Existing Melds")) {
109
return JokerRules.NO_EXISTING_MELDS;
110
} else if (this.jokerRules.getValue().equals("No Restrictions")) {
111
return JokerRules.LENIENT;
0 commit comments