mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08: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> {
|
||||
|
||||
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…
Add table
Add a link
Reference in a new issue