- Fixed a bug in BoosterDraftAI.

This commit is contained in:
Sloth
2012-08-03 07:44:37 +00:00
parent 5ba0659f05
commit 7788b9242e

View File

@@ -397,7 +397,7 @@ public class BoosterDraftAI {
BoosterDraftAI.colorToLand.put(Constant.Color.WHITE, "Plains"); BoosterDraftAI.colorToLand.put(Constant.Color.WHITE, "Plains");
// Initialize deck array and playerColors list // Initialize deck array and playerColors list
for (int i = 0; i < this.deck.size(); i++) { for (int i = 0; i < N_DECKS; i++) {
this.deck.add(new ArrayList<CardPrinted>()); this.deck.add(new ArrayList<CardPrinted>());
this.playerColors.add(new DeckColors()); this.playerColors.add(new DeckColors());
} }