mirror of
https://github.com/correl/mage.git
synced 2024-11-14 19:19:32 +00:00
Merge pull request #9762 from Susucre/bump_max_cards_per_deck
double max deck size (from 1000 to 2000)
This commit is contained in:
commit
a4721487b1
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ import java.util.stream.Collectors;
|
|||
|
||||
public class Deck implements Serializable, Copyable<Deck> {
|
||||
|
||||
static final int MAX_CARDS_PER_DECK = 1000;
|
||||
static final int MAX_CARDS_PER_DECK = 2000;
|
||||
|
||||
private String name;
|
||||
private final Set<Card> cards = new LinkedHashSet<>();
|
||||
|
|
Loading…
Reference in a new issue