mirror of
https://github.com/correl/mage.git
synced 2025-04-13 17:00:09 -09: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> {
|
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 String name;
|
||||||
private final Set<Card> cards = new LinkedHashSet<>();
|
private final Set<Card> cards = new LinkedHashSet<>();
|
||||||
|
|
Loading…
Add table
Reference in a new issue