replaced Card instances in client with MockCard

This commit is contained in:
North 2013-06-19 22:53:53 +03:00
parent e9b81dd006
commit 1b3a51484e
9 changed files with 19 additions and 15 deletions

View file

@ -79,7 +79,7 @@ public class AddLandDialog extends MageDialog {
}
for (int i = 0; i < number; i++) {
Card land = cards.get(random.nextInt(cards.size())).getCard();
Card land = cards.get(random.nextInt(cards.size())).getMockCard();
deck.getCards().add(land);
}
}