Skip to content

Commit

Permalink
Fixed an accidental CommanderPredicate usage instead of DuelCommander…
Browse files Browse the repository at this point in the history
… predicate
  • Loading branch information
misha-colbourne committed Nov 20, 2024
1 parent bb500df commit dd669d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge-core/src/main/java/forge/deck/DeckFormat.java
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public void adjustCMCLevels(List<ImmutablePair<FilterCMC, Integer>> cmcLevels) {
}
},
DuelCommander ( Range.is(99), Range.is(0), 1, null,
card -> StaticData.instance().getCommanderPredicate().apply(card)
card -> StaticData.instance().getDuelCommanderPredicate().apply(card)
) {
private final Set<String> bannedCommanders = ImmutableSet.of(
"Ajani, Nacatl Pariah",
Expand Down

0 comments on commit dd669d0

Please sign in to comment.