mirror of
https://github.com/correl/mage.git
synced 2024-11-15 03:00:16 +00:00
Fixed that AI can't play games in Jumptstart tourneys
This commit is contained in:
parent
c4f028ffa0
commit
1cf57e0840
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue