Fixed that AI can't play games in Jumptstart tourneys

This commit is contained in:
Oleg Agafonov 2020-07-10 17:40:59 +04:00
parent c4f028ffa0
commit 1cf57e0840

View file

@ -102,7 +102,7 @@ public class JumpstartPoolGenerator {
int index = random.nextInt(JUMPSTART_PACKS.size());
list.getCards().addAll(JUMPSTART_PACKS.get(index).getCards());
}
return Deck.load(list).getCards();
return Deck.load(list, false, false).getCards();
} catch (GameException e) {
throw new RuntimeException(e);
}