Merge pull request #9762 from Susucre/bump_max_cards_per_deck

double max deck size (from 1000 to 2000)
This commit is contained in:
Oleg Agafonov 2023-02-25 16:43:06 +04:00 committed by GitHub
commit a4721487b1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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<>();