mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
[MH2] fixed Urza's Saga not being able to select cards in library (fixes #7894)
This commit is contained in:
parent
0bbc904de0
commit
917b63cc00
1 changed files with 1 additions and 1 deletions
|
@ -93,6 +93,6 @@ enum UrzasSagaPredicate implements Predicate<Card> {
|
|||
|
||||
@Override
|
||||
public boolean apply(Card input, Game game) {
|
||||
return costs.contains(input.getManaCostSymbols().stream().reduce(String::join));
|
||||
return costs.contains(String.join("", input.getManaCostSymbols()));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue