Skip to content

Commit

Permalink
remove eliminated DS teams
Browse files Browse the repository at this point in the history
  • Loading branch information
Chew authored Oct 12, 2024
1 parent 0b5c24e commit 40c0f98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pw/chew/mlb/util/MLBAPIUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public List<Command.Choice> asChoices() {

public List<Command.Choice> asPostSeasonChoices() {
// we only want people in the post-season. These teams are: 147, 110, 114, 118, 116, 117, 143, 121, 158, 119, 135, 109, 144
List<Integer> postSeason = Arrays.asList(147, 114, 118, 116, 143, 121, 158, 119, 135);
List<Integer> postSeason = Arrays.asList(147, 114, 121, 119);

List<Command.Choice> choices = new ArrayList<>();
for (int i = 0; i < raw.length(); i++) {
Expand Down

0 comments on commit 40c0f98

Please sign in to comment.