mirror of
https://github.com/correl/mage.git
synced 2025-01-11 11:05:23 +00:00
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:
parent
b21e3e9a05
commit
9242b72910
3 changed files with 3 additions and 1 deletions
Binary file not shown.
|
@ -20,6 +20,9 @@ public class CardsStorage {
|
|||
if (CardUtil.isLand(card)) {
|
||||
landCards.add(card);
|
||||
}
|
||||
if (card.getName().contains("Pledge")) {
|
||||
System.out.println(card.getName());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -28,7 +28,6 @@ public class CardImageUtils {
|
|||
String cardname = c.name;
|
||||
String set = c.set;
|
||||
|
||||
if (cardname != null) { cardname = cardname.replace("'", ""); }
|
||||
CardUrl card = new CardUrl(cardname, set, c.collectorId, c.isToken);
|
||||
|
||||
File file = null;
|
||||
|
|
Loading…
Reference in a new issue