Issue 34 fix. But "Conqueror's Pledge" name is wrong (another bug). You may check console log for that card (Added logging to CardsStorage).

This commit is contained in:
magenoxx 2010-12-03 05:24:54 +00:00
parent b21e3e9a05
commit 9242b72910
3 changed files with 3 additions and 1 deletions

View file

@ -20,6 +20,9 @@ public class CardsStorage {
if (CardUtil.isLand(card)) {
landCards.add(card);
}
if (card.getName().contains("Pledge")) {
System.out.println(card.getName());
}
}
}
}