mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 18:58:00 +00:00
- Reverted the last experimental fix due to a crash. Will recommit soon.
This commit is contained in:
@@ -67,14 +67,7 @@ public class GuiDownloadPicturesLQ extends GuiDownloader {
|
||||
for (final IPaperCard c : CardDb.instance().getUniqueCards()) {
|
||||
//System.out.println(c.getName());
|
||||
CardRules cardRules = c.getRules();
|
||||
String cardName = "";
|
||||
if (cardRules.getSplitType() == CardSplitType.Split) {
|
||||
cardName = String.format("%s%s", cardRules.getMainPart().getName() + cardRules.getOtherPart().getName());
|
||||
System.out.println(cardName);
|
||||
} else {
|
||||
cardName = cardRules.getMainPart().getName();
|
||||
}
|
||||
this.createDLObjects(cardRules.getPictureUrl(), cardName);
|
||||
this.createDLObjects(cardRules.getPictureUrl(), cardRules.getMainPart().getName());
|
||||
|
||||
ICardCharacteristics secondSide = cardRules.getOtherPart();
|
||||
if (secondSide != null && cardRules.getSplitType() == CardSplitType.Transform) {
|
||||
|
||||
Reference in New Issue
Block a user