mirror of
https://github.com/correl/mage.git
synced 2024-11-25 03:00:11 +00:00
double max deck size
This commit is contained in:
parent
221cc8433a
commit
f0cbbe23cc
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…
Reference in a new issue